[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / direct-synthesized-ivar-access.m
blob7ec333723b66c6fc1c8b321d172cba3bd7a48bab
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
3 // rdar://8673791
4 // rdar://9943851
6 @interface I {
9 @property int IVAR; 
10 - (int) OK;
11 @end
13 @implementation I
14 - (int) Meth { return _IVAR; }
15 - (int) OK { return self.IVAR; }
16 @end