summaryrefslogtreecommitdiffstats
path: root/test/Sema/rdar6248119.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/rdar6248119.m')
-rw-r--r--test/Sema/rdar6248119.m27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/Sema/rdar6248119.m b/test/Sema/rdar6248119.m
new file mode 100644
index 0000000..631c7b3
--- /dev/null
+++ b/test/Sema/rdar6248119.m
@@ -0,0 +1,27 @@
+// RUN: clang-cc -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;
+ }
+}
+
+void f1() {
+ int i;
+ @try {
+ int i =0;
+ } @finally {
+ }
+}
+
+void f2() {
+ int i;
+ @try {
+ } @catch(id e) {
+ int i = 0;
+ }
+}
OpenPOWER on IntegriCloud