brintos

brintos / llvm-project-archived public Read only

0
0
Text · 209 B · 8e5a2ea Raw
13 lines · plain
1// RUN: %clang_cc1 -x objective-c++ -fblocks -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -o - %s2 3@interface Foo {4    void (^_block)(void);5}6@end7 8@implementation Foo9- (void)bar {10    _block();11}12@end13