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