brintos

brintos / llvm-project-archived public Read only

0
0
Text · 295 B · 929f364 Raw
20 lines · plain
1// RUN: cp %s %t2// RUN: %clang_cc1 -x objective-c -fobjc-arc -fblocks -fixit %t3// RUN: %clang_cc1 -x objective-c -fobjc-arc -fblocks -Werror %t4 5@interface Root @end6 7@interface I : Root8{9  int _bar;10}11@end12 13@implementation I14  - (void)foo{15      ^{16           _bar = 3;17       }();18  }19@end20