llvm-project/clang/test/SemaObjC/direct-synthesized-ivar-acc...

15 lines
380 B
Objective-C

// RUN: %clang_cc1 -Wnonfragile-abi2 -fsyntax-only -fobjc-nonfragile-abi2 -verify %s
// rdar://8673791
@interface I {
}
@property int IVAR; // expected-note {{property declared here}}
- (int) OK;
@end
@implementation I
- (int) Meth { return IVAR; } // expected-warning {{direct access of synthesized ivar by using property access 'IVAR'}}
- (int) OK { return self.IVAR; }
@end