blob: fbfa1e3af3bc2d3bed7bbd31bc11778484c337bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: clang -fsyntax-only %s -verify
// Test case for:
// <rdar://problem/6248119> @finally doesn't introduce a new scope
void f0() {
int i;
@try {
} @finally {
int i = 0;
}
}
|