summaryrefslogtreecommitdiff
path: root/test/CodeGen/rdr-6732143-dangling-block-reference.m
blob: b4d21a3f8fccd3657b0f22d35daf3c665c7acb02 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm %s -o -

void f0(id x) {
  @synchronized (x) {      
    do { ; } while(0);
    @try {
    } @finally {
    }
  }
}