blob: 16020a3f6c5ae7ab926e949140474f04f085a548 [file] [log] [blame]
/* APPLE LOCAL file radar 5172645 */
/* Don't issue 'assign' is default warning with -Wno-property-assign-default */
/* { dg-options "-mmacosx-version-min=10.5 -Wno-property-assign-default -fobjc-gc" } */
/* { dg-do compile { target *-*-darwin* } } */
/* { dg-require-effective-target objc_gc } */
#include <Foundation/Foundation.h>
@interface Foo : NSObject
@property id bar;
@end
@implementation Foo
@dynamic bar;
@end