aboutsummaryrefslogtreecommitdiff
path: root/clang/test/FixIt/fixit-missing-self-in-block.m
blob: 929f36498d42036944b30e4fdf1fe71b3e0de7eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: cp %s %t
// RUN: %clang_cc1 -x objective-c -fobjc-arc -fblocks -fixit %t
// RUN: %clang_cc1 -x objective-c -fobjc-arc -fblocks -Werror %t

@interface Root @end

@interface I : Root
{
  int _bar;
}
@end

@implementation I
  - (void)foo{
      ^{
           _bar = 3;
       }();
  }
@end