freebsd-nq/test/CodeGenObjC/rdr-6732143-dangling-block-reference.m

11 lines
193 B
Mathematica
Raw Normal View History

// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm -fobjc-exceptions %s -o -
2009-06-02 17:58:47 +00:00
void f0(id x) {
@synchronized (x) {
do { ; } while(0);
@try {
} @finally {
}
}
}