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 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