YouCompleteMe/cpp/llvm/tools/clang/test/SemaObjC/rdar6248119.m
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

28 lines
357 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only %s -verify -fobjc-exceptions
// Test case for:
// <rdar://problem/6248119> @finally doesn't introduce a new scope
void f0() {
int i;
@try {
} @finally {
int i = 0;
}
}
void f1() {
int i;
@try {
int i =0;
} @finally {
}
}
void f2() {
int i;
@try {
} @catch(id e) {
int i = 0;
}
}