diff options
Diffstat (limited to 'test/SemaObjC/super.m')
-rw-r--r-- | test/SemaObjC/super.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/super.m b/test/SemaObjC/super.m index 0c42e99d71..cf48c196db 100644 --- a/test/SemaObjC/super.m +++ b/test/SemaObjC/super.m @@ -21,7 +21,7 @@ void takevoidptr(void*); @implementation B - (void)instanceMethod { - [super iMethod]; // expected-warning{{'A' may not respond to 'iMethod')}} + [super iMethod]; // expected-warning{{'A' may not respond to 'iMethod'}} // Use of super in a block is ok and does codegen to the right thing. // rdar://7852959 |