brintos

brintos / llvm-project-archived public Read only

0
0
Text · 237 B · 5b7203f Raw
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