From: Chris Lattner Date: Mon, 12 Apr 2010 05:43:31 +0000 (+0000) Subject: fix an invalid use of super, you can't use super like this in a block! X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00e2c63e97e93a3106305325641ce0ff5108d20d;p=clang fix an invalid use of super, you can't use super like this in a block! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101017 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenObjC/blocks.m b/test/CodeGenObjC/blocks.m index 6dc14107b7..8ba319eefe 100644 --- a/test/CodeGenObjC/blocks.m +++ b/test/CodeGenObjC/blocks.m @@ -29,7 +29,7 @@ void foo(T *P) { @interface B : A @end @implementation B -(void) im1 { - ^(void) { [super im0]; }(); + ^(void) { [self im0]; }(); } @end