aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGenObjC/blocks.m2
1 files changed, 1 insertions, 1 deletions
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