aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/debug-info-property2.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenObjC/debug-info-property2.m')
-rw-r--r--test/CodeGenObjC/debug-info-property2.m14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGenObjC/debug-info-property2.m b/test/CodeGenObjC/debug-info-property2.m
new file mode 100644
index 000000000000..4cd76c1ca6dc
--- /dev/null
+++ b/test/CodeGenObjC/debug-info-property2.m
@@ -0,0 +1,14 @@
+// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
+
+// CHECK: AT_APPLE_property_name
+@interface C {
+ int _base;
+}
+@property int base;
+@end
+
+@implementation C
+@synthesize base = _base;
+@end
+
+void foo(C *cptr) {}