]> granicus.if.org Git - clang/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176870 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaObjC/super-property-notation.m

index a0364c9d9c045d6895cf196579265a5cba3d6c91..4741d1b5a870bcde029a8881cca11110d2007eb5 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