blob: d0cf1f10f729006c9864b4d551481c7fd4e7cb59 [file] [log] [blame]
Daniel Dunbar8d246462010-05-10 23:31:31 +00001// RUN: %clang_cc1 -g %s -fblocks -S -o %t
Devang Patela8dcd4c2010-05-10 17:24:58 +00002// Radar 7959934
3
4@interface NSObject {
5 struct objc_object *isa;
6}
7@end
8@interface Foo : NSObject {
9 int _prop;
10}
11@end
12
13@implementation Foo
14- (int)doSomething {
15 int (^blk)(void) = ^{ return _prop; };
16 return blk();
17}
18
19@end
20