blob: a72fb5f19c7afca0909454c04f0f23226f11d7b3 [file] [log] [blame]
// RUN: %clang_cc1 -Wnonfragile-abi2 -fsyntax-only -fobjc-nonfragile-abi -fobjc-default-synthesize-properties -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