summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/class-getter-dotsyntax.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenObjC/class-getter-dotsyntax.m')
-rw-r--r--test/CodeGenObjC/class-getter-dotsyntax.m21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/CodeGenObjC/class-getter-dotsyntax.m b/test/CodeGenObjC/class-getter-dotsyntax.m
new file mode 100644
index 0000000..3c82f78
--- /dev/null
+++ b/test/CodeGenObjC/class-getter-dotsyntax.m
@@ -0,0 +1,21 @@
+// RUN: clang-cc -fnext-runtime -emit-llvm -o %t %s
+
+@interface Test { }
++ (Test *)crash;
++ (void)setCrash: (int)value;
+@end
+
+@implementation Test
+static int _value;
+- (void)cachesPath
+{
+ static Test *cachesPath;
+
+ if (!cachesPath) {
+ Test *crash = Test.crash;
+ }
+}
++ (Test *)crash{ return 0; }
++ (void)setCrash: (int)value{ _value = value; }
+@end
+
OpenPOWER on IntegriCloud