diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-05-06 18:14:26 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-05-06 18:14:26 +0000 |
commit | daa03115d6d381c0fb1949fb176b4ac50b36dbbb (patch) | |
tree | e569918e43d0c932fd2b684129e6598e64fe2eb5 | |
parent | 432af5985a22e098cbc2329c021d5e23c944fb91 (diff) |
Test was accidently nullified in previous check-in.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50758 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Sema/objc-property-3.m | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Sema/objc-property-3.m b/test/Sema/objc-property-3.m index e69de29bb2..b22059c238 100644 --- a/test/Sema/objc-property-3.m +++ b/test/Sema/objc-property-3.m @@ -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 |