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 | 6f4f307d1f78e467e28871d14e1db62466552a9c (patch) | |
| tree | 89a5ac1fc23fd88265d2800bee6fdaf84e924f60 | |
| parent | f0e3fac994754082616717b0544e25130feed12a (diff) | |
| download | bcm5719-llvm-6f4f307d1f78e467e28871d14e1db62466552a9c.tar.gz bcm5719-llvm-6f4f307d1f78e467e28871d14e1db62466552a9c.zip | |
Turns out we tested for this typo.
llvm-svn: 140513
| -rw-r--r-- | clang/test/SemaObjC/continuation-class-property.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaObjC/continuation-class-property.m b/clang/test/SemaObjC/continuation-class-property.m index e398ae54985..d017ac23dce 100644 --- a/clang/test/SemaObjC/continuation-class-property.m +++ b/clang/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 |

