bolt/deps/llvm-18.1.8/clang/test/FixIt/fixit-missing-self-in-block.m

20 lines
295 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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