1 // RUN: %clang_cc1 -Wnonfragile-abi2 -fsyntax-only -fobjc-default-synthesize-properties -verify %s 2 // rdar://8673791 3 // rdar://9943851 4 5 @interface I { 6 } 7 8 @property int IVAR; 9 - (int) OK; 10 @end 11 12 @implementation I 13 - (int) Meth { return _IVAR; } 14 - (int) OK { return self.IVAR; } 15 @end 16