summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/writable-property-in-superclass.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaObjC/writable-property-in-superclass.m')
-rw-r--r--test/SemaObjC/writable-property-in-superclass.m17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/SemaObjC/writable-property-in-superclass.m b/test/SemaObjC/writable-property-in-superclass.m
new file mode 100644
index 0000000..182b1c4
--- /dev/null
+++ b/test/SemaObjC/writable-property-in-superclass.m
@@ -0,0 +1,17 @@
+// RUN: clang-cc -fsyntax-only -verify %s
+
+@interface MessageStore
+@property (assign, readonly) int P;
+@end
+
+@interface MessageStore (CAT)
+@property (assign) int P;
+@end
+
+@interface NeXTMbox : MessageStore
+@end
+
+@implementation NeXTMbox
+- (void) Meth { self.P = 1; }
+@end
+
OpenPOWER on IntegriCloud