bolt/deps/llvm-18.1.8/clang/test/FixIt/fixit-missing-self-in-block.m
2025-02-14 19:21:04 +01:00

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