blob: 80e8caab7271be243055375a7a1fc7d9e37a7172 [file] [log] [blame]
Fariborz Jahaniane24b22b2009-12-18 01:15:21 +00001// RUN: %clang_cc1 -x objective-c++ -fblocks -rewrite-objc -o - %s
2
3@interface Foo {
4 void (^_block)(void);
5}
6@end
7
8@implementation Foo
9- (void)bar {
10 _block();
11}
12@end