Modify comment in user test.
authorFariborz Jahanian <fjahanian@apple.com>
Tue, 12 Mar 2013 15:53:46 +0000 (15:53 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Tue, 12 Mar 2013 15:53:46 +0000 (15:53 +0000)
llvm-svn: 176870

clang/test/SemaObjC/super-property-notation.m

index a0364c9..4741d1b 100644 (file)
@@ -46,7 +46,7 @@ __attribute__((objc_root_class)) @interface ClassBase
 
 @implementation ClassDerived
 - (void) Meth:(ClassBase*)foo {
-  super.foo = foo; // issues compile warning
+  super.foo = foo; // must work with no warning
   [super setFoo:foo]; // works with no warning
 }
 @end