diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-12-06 01:12:43 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-12-06 01:12:43 +0000 |
commit | 567c8df3646208e0a5816c57191ca36930f50ed3 (patch) | |
tree | 22d4e0550d04dde7f5f35fb1b24912f0d286e32a /test/Coverage/objc-language-features.inc | |
parent | 5c37de788529cd9180f22069970737a7208bd625 (diff) |
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
Diffstat (limited to 'test/Coverage/objc-language-features.inc')
-rw-r--r-- | test/Coverage/objc-language-features.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Coverage/objc-language-features.inc b/test/Coverage/objc-language-features.inc index 793d0e5a44..25988f5e53 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; |