summaryrefslogtreecommitdiffstats
path: root/test/Parser/objc-property-syntax.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/Parser/objc-property-syntax.m')
-rw-r--r--test/Parser/objc-property-syntax.m12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Parser/objc-property-syntax.m b/test/Parser/objc-property-syntax.m
new file mode 100644
index 0000000..cf75aaa
--- /dev/null
+++ b/test/Parser/objc-property-syntax.m
@@ -0,0 +1,12 @@
+// RUN: clang-cc -fsyntax-only -verify %s
+
+@interface MyClass {
+
+};
+@property unsigned char bufferedUTF8Bytes[4]; // expected-error {{property cannot have array or function type}}
+@property unsigned char bufferedUTFBytes:1; // expected-error {{property name cannot be a bitfield}}
+@end
+
+@implementation MyClass
+@end
+
OpenPOWER on IntegriCloud