blob: 36597b3c71d472202f77217de58872a0a076104e [file] [log] [blame]
/* APPLE LOCAL file radar 4436866 */
/* Property cannot be accessed in class method. */
/* APPLE LOCAL radar 4899595 */
/* { dg-options "-fno-objc-new-property -mmacosx-version-min=10.5" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface Person
{
}
@property (ivar) char *fullName;
+ (void) testClass;
@end
@implementation Person
@property char *fullName;
+ (void) testClass {
self.fullName = "MyName"; /* { dg-error "request for member \\'fullName\\' in something not a structure or union" } */
}
@end