From: Fariborz Jahanian Date: Tue, 12 Mar 2013 15:53:46 +0000 (+0000) Subject: Modify comment in user test. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=969d30c0875459fb50aa21e157c2fb65420981f4;p=platform%2Fupstream%2Fllvm.git Modify comment in user test. llvm-svn: 176870 --- diff --git a/clang/test/SemaObjC/super-property-notation.m b/clang/test/SemaObjC/super-property-notation.m index a0364c9..4741d1b 100644 --- a/clang/test/SemaObjC/super-property-notation.m +++ b/clang/test/SemaObjC/super-property-notation.m @@ -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