]> granicus.if.org Git - clang/commitdiff
Turns out we tested for this typo.
authorBenjamin Kramer <benny.kra@googlemail.com>
Mon, 26 Sep 2011 02:32:23 +0000 (02:32 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Mon, 26 Sep 2011 02:32:23 +0000 (02:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140513 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaObjC/continuation-class-property.m

index e398ae549852314f1bf9c3aa19a3f8f4b19a8da2..d017ac23dced2f29f8ada347ac056fe26ef67c68 100644 (file)
@@ -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