1 // RUN: %clang -O0 -g %s -c -o %t.o
2 // RUN: %clang %t.o -o %t.out -framework Foundation
3 // RUN: %test_debuginfo %s %t.out
11 // DEBUGGER: p dbTransaction
17 #include <Cocoa/Cocoa.h>
19 extern void foo(void(^)(void));
21 @interface A:NSObject @end
26 __block int dbTransaction = 0;
27 int (^x)(void) = ^(void) { (void) self;
37 void foo(void(^x)(void)) {}