blob: 90639d5bca1059b5bfba5e42075d21cbe4ef45a5 [file] [log] [blame]
/* APPLE LOCAL file radar 4436866 */
/* Property cannot be accessed in class method. */
/* APPLE LOCAL radar 4899595 */
/* { dg-options "-mmacosx-version-min=10.5" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-do compile { target *-*-darwin* } } */
__attribute__((objc_root_class)) @interface Person
{
}
@property char *fullName;
+ (void) testClass;
@end
@implementation Person
@dynamic fullName;
+ (void) testClass {
self.fullName = "MyName"; /* { dg-error "accessing unknown" } */
}
@end