blob: 231c9a23f8ad504e55de794b2147dac64dad91a2 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -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