xref: /llvm-project/clang/test/CodeGenObjC/blocks-ivar-debug.m (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1// RUN: %clang_cc1 -debug-info-kind=limited %s -fblocks -S -o %t
2
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
20