15 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s2// expected-no-diagnostics3 4@interface I {5}6 7@property int IVAR; 8- (int) OK;9@end10 11@implementation I12- (int) Meth { return _IVAR; }13- (int) OK { return self.IVAR; }14@end15