blob: c7ea1d96a05b00293641202a8b3bb197901ee3f3 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -fblocks
Steve Naroffd7612e12008-11-17 16:28:52 +00002
3@interface NSObject {
4 struct objc_object *isa;
5}
6@end
7@interface Foo : NSObject {
8 int _prop;
9}
10@end
11
12@implementation Foo
13- (int)doSomething {
14 int (^blk)(void) = ^{ return _prop; };
15 return blk();
16}
17
18@end
19