aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjCXX/exceptions-fragile.mm
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaObjCXX/exceptions-fragile.mm')
-rw-r--r--test/SemaObjCXX/exceptions-fragile.mm12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/SemaObjCXX/exceptions-fragile.mm b/test/SemaObjCXX/exceptions-fragile.mm
new file mode 100644
index 000000000000..11dd8e94c1de
--- /dev/null
+++ b/test/SemaObjCXX/exceptions-fragile.mm
@@ -0,0 +1,12 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+@interface NSException @end
+void opaque();
+
+namespace test0 {
+ void test() {
+ try {
+ } catch (NSException *e) { // expected-error {{can't catch Objective C exceptions in C++ in the non-unified exception model}}
+ }
+ }
+}