blob: fd812dd3882354c8c9d2ace28650bf0b76c8bf6a [file] [log] [blame]
Anders Carlssone9b801f2011-02-22 01:52:06 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm -fobjc-exceptions %s -o -
Daniel Dunbaraa5bd872009-04-01 04:37:47 +00002
3void f0(id x) {
4 @synchronized (x) {
5 do { ; } while(0);
6 @try {
7 } @finally {
8 }
9 }
10}