aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-03-12 15:53:46 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-03-12 15:53:46 +0000
commite96bc52119479e4fd4e2e2fb49fc2b1d6c2b5488 (patch)
treebdb1f6aa304d9386374ff66b564d9229b7d12f0f
parent77e430df036060ba360a3e378deb4bbb3f691580 (diff)
Modify comment in user test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176870 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/SemaObjC/super-property-notation.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/super-property-notation.m b/test/SemaObjC/super-property-notation.m
index a0364c9d9c..4741d1b5a8 100644
--- a/test/SemaObjC/super-property-notation.m
+++ b/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