mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-24 11:16:07 +00:00
20 lines
295 B
Mathematica
20 lines
295 B
Mathematica
![]() |
// 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
|