llvm-for-llvmta/tools/clang/test/FixIt/fixit-missing-self-in-block.m
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

21 lines
314 B
Objective-C

// 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
// rdar://11194874
@interface Root @end
@interface I : Root
{
int _bar;
}
@end
@implementation I
- (void)foo{
^{
_bar = 3;
}();
}
@end