blob: e59fa81662d2973e4a68c81fd1dc3711e7caf89b [file] [log] [blame]
// 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