aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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