diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-26 02:32:23 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-26 02:32:23 +0000 |
commit | 904371225947f5df6d8f1a12f1ff65359fb3e713 (patch) | |
tree | cd08e4cffa864a45eab8cb15d4a51119123489d5 | |
parent | aef05892611562a5a2de7f4687c9f22607d3a9ac (diff) |
Turns out we tested for this typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140513 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaObjC/continuation-class-property.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/continuation-class-property.m b/test/SemaObjC/continuation-class-property.m index e398ae5498..d017ac23dc 100644 --- a/test/SemaObjC/continuation-class-property.m +++ b/test/SemaObjC/continuation-class-property.m @@ -38,6 +38,6 @@ typedef struct { @end @interface MyClass () -@property (readwrite) NSString *foo; // expected-error {{type of property 'NSString *' in continuation class does not matchproperty type in primary class}} -@property (readwrite, strong) NSRect bar; // expected-error {{type of property 'NSRect' in continuation class does not matchproperty type in primary class}} +@property (readwrite) NSString *foo; // expected-error {{type of property 'NSString *' in continuation class does not match property type in primary class}} +@property (readwrite, strong) NSRect bar; // expected-error {{type of property 'NSRect' in continuation class does not match property type in primary class}} @end |