blob: 8e5a2ea124a8e08c3b9d5212083febc9d46f4499 [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -x objective-c++ -fblocks -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -o - %s
Fariborz Jahaniane24b22b2009-12-18 01:15:21 +00002
3@interface Foo {
4 void (^_block)(void);
5}
6@end
7
8@implementation Foo
9- (void)bar {
10 _block();
11}
12@end