]> granicus.if.org Git - clang/commitdiff
Test was accidently nullified in previous check-in.
authorFariborz Jahanian <fjahanian@apple.com>
Tue, 6 May 2008 18:14:26 +0000 (18:14 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Tue, 6 May 2008 18:14:26 +0000 (18:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50758 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/objc-property-3.m

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..b22059c238234e90502bead5c5036210b8aaa27c 100644 (file)
@@ -0,0 +1,14 @@
+// RUN: clang -verify %s
+
+@interface I 
+{
+       id d1;
+}
+@property (readwrite, copy) id d1;
+@property (readwrite, copy) id d2;
+@end
+
+@interface NOW : I
+@property (readonly, retain) id d1; // expected-warning {{attribute 'readonly' of property 'd1' restricts attribute 'readwrite' of property inherited from 'I'}} expected-warning {{property 'd1' 'copy' attribute does not match the property inherited from'I'}}
+@property (readwrite, copy) I* d2; // expected-warning {{property type 'I *' does not match property type inherited from 'I'}}
+@end