commit | 7ad911cef1201ad1ef81e7a5f7906ed048475feb | [log] [tgz] |
---|---|---|
author | Fariborz Jahanian <fjahanian@apple.com> | Sat Dec 06 01:12:43 2008 +0000 |
committer | Fariborz Jahanian <fjahanian@apple.com> | Sat Dec 06 01:12:43 2008 +0000 |
tree | 22d4e0550d04dde7f5f35fb1b24912f0d286e32a | |
parent | a133e26a86b181df1188a7af7671db790b5e56b2 [diff] [blame] |
Patch to diagnose a variety of misuse of property attributes. Example would be, readonly, assign or assign, copy, etc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60620 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Coverage/objc-language-features.inc b/test/Coverage/objc-language-features.inc index 793d0e5..25988f5 100644 --- a/test/Coverage/objc-language-features.inc +++ b/test/Coverage/objc-language-features.inc
@@ -16,7 +16,7 @@ B *iv1; } -@property(assign,readonly) int p0; +@property(readonly) int p0; @property(assign,nonatomic,readwrite) int p1; @property(copy) id p2; @property(retain) id p3;