hanchenye-llvm-project/clang/test/CodeGen/rdr-6732143-dangling-block-...

11 lines
173 B
Objective-C

// RUN: clang-cc -triple x86_64-apple-darwin9 -emit-llvm %s -o -
void f0(id x) {
@synchronized (x) {
do { ; } while(0);
@try {
} @finally {
}
}
}