diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-09-17 20:57:19 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-09-17 20:57:19 +0000 |
commit | 6defd9f31eec51278d056f1bff885018e2321373 (patch) | |
tree | 5d8f8516ee0a0ffe6e6522f2209fc1ba435826ee /test/SemaObjCXX | |
parent | 08602359845e668194d111b794b8965358babfe6 (diff) |
objective-C: peroform property attribute consistency
checking on property declared in class extension.
// rdar://12214070
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164053 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaObjCXX')
-rw-r--r-- | test/SemaObjCXX/property-synthesis-error.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjCXX/property-synthesis-error.mm b/test/SemaObjCXX/property-synthesis-error.mm index 4f64a3a338..1d93523b4c 100644 --- a/test/SemaObjCXX/property-synthesis-error.mm +++ b/test/SemaObjCXX/property-synthesis-error.mm @@ -16,7 +16,7 @@ @interface MyClass () -@property (readwrite) NSMutableArray * array; +@property (readwrite, retain) NSMutableArray * array; @end |