blob: ac1b3b40fc4d978a564c79e2cd7be95391cf163c [file] [log] [blame]
/* APPLE LOCAL file radar 4805321 */
/* { dg-options "-mmacosx-version-min=10.5 -fobjc-new-property" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface INTF
{
id IV;
id IVXXX;
int synthesize_ivar;
}
@property (readwrite, assign) int name1;
@property (readonly, retain) id name2;
@property (readwrite, copy) id name3;
@end
@implementation INTF
@dynamic name1,name2,name3;
@synthesize name1=synthesize_ivar, name2=IV, name3=IVXXX;
@end