1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -x objective-c++ -fblocks -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -o - %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc@interface Foo { 4*f4a2713aSLionel Sambuc void (^_block)(void); 5*f4a2713aSLionel Sambuc} 6*f4a2713aSLionel Sambuc@end 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc@implementation Foo 9*f4a2713aSLionel Sambuc- (void)bar { 10*f4a2713aSLionel Sambuc _block(); 11*f4a2713aSLionel Sambuc} 12*f4a2713aSLionel Sambuc@end 13