blob: 2ec27b3eb0659eedbb57a8bf0676b3545946d220 [file] [log] [blame]
// RUN: %clang_cc1 -x objective-c++ -fblocks -rewrite-objc -fobjc-fragile-abi -o - %s
@interface Foo {
void (^_block)(void);
}
@end
@implementation Foo
- (void)bar {
_block();
}
@end