[cfe-commits] r140513 - /cfe/trunk/test/SemaObjC/continuation-class-property.m

Benjamin Kramer benny.kra at googlemail.com
Sun Sep 25 19:32:23 PDT 2011


Author: d0k
Date: Sun Sep 25 21:32:23 2011
New Revision: 140513

URL: http://llvm.org/viewvc/llvm-project?rev=140513&view=rev
Log:
Turns out we tested for this typo.

Modified:
    cfe/trunk/test/SemaObjC/continuation-class-property.m

Modified: cfe/trunk/test/SemaObjC/continuation-class-property.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/continuation-class-property.m?rev=140513&r1=140512&r2=140513&view=diff
==============================================================================
--- cfe/trunk/test/SemaObjC/continuation-class-property.m (original)
+++ cfe/trunk/test/SemaObjC/continuation-class-property.m Sun Sep 25 21:32:23 2011
@@ -38,6 +38,6 @@
 @end
 
 @interface MyClass ()
- at property (readwrite) NSString *foo; // expected-error {{type of property 'NSString *' in continuation class does not matchproperty type in primary class}}
- at property (readwrite, strong) NSRect bar; // expected-error {{type of property 'NSRect' in continuation class does not matchproperty type in primary class}}
+ at property (readwrite) NSString *foo; // expected-error {{type of property 'NSString *' in continuation class does not match property type in primary class}}
+ at property (readwrite, strong) NSRect bar; // expected-error {{type of property 'NSRect' in continuation class does not match property type in primary class}}
 @end





More information about the cfe-commits mailing list