blob: 0e9faf949c9e67ad86c79f42c93c3a5430744e44 [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* } } */
@interface Person
{
}
@property char *fullName;
+ (void) testClass;
@end
@implementation Person
@dynamic fullName;
+ (void) testClass {
self.fullName = "MyName"; /* { dg-error "accessing unknown" } */
}
@end