summaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC/direct-synthesized-ivar-access.m
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/SemaObjC/direct-synthesized-ivar-access.m')
-rw-r--r--clang/test/SemaObjC/direct-synthesized-ivar-access.m15
1 files changed, 15 insertions, 0 deletions
diff --git a/clang/test/SemaObjC/direct-synthesized-ivar-access.m b/clang/test/SemaObjC/direct-synthesized-ivar-access.m
new file mode 100644
index 0000000..54b7110
--- /dev/null
+++ b/clang/test/SemaObjC/direct-synthesized-ivar-access.m
@@ -0,0 +1,15 @@
+// RUN: %clang_cc1 -Wnonfragile-abi2 -fsyntax-only -fobjc-default-synthesize-properties -verify -Wno-objc-root-class %s
+// rdar://8673791
+// rdar://9943851
+
+@interface I {
+}
+
+@property int IVAR;
+- (int) OK;
+@end
+
+@implementation I
+- (int) Meth { return _IVAR; }
+- (int) OK { return self.IVAR; }
+@end