diff options
Diffstat (limited to 'test/SemaObjCXX/exceptions-fragile.mm')
-rw-r--r-- | test/SemaObjCXX/exceptions-fragile.mm | 12 |
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 0000000..11dd8e9 --- /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}} + } + } +} |