blob: 2d1baa62200930c6d5e6e229cf5470d373302b01 [file] [log] [blame]
Daniel Dunbaraa5bd872009-04-01 04:37:47 +00001// RUN: clang-cc -triple x86_64-apple-darwin9 -emit-llvm %s -o -
2
3void f0(id x) {
4 @synchronized (x) {
5 do { ; } while(0);
6 @try {
7 } @finally {
8 }
9 }
10}