Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / exceptions-fragile.mm
blobff5a0cb4cd3caf02dd2c9c48cd5cae384459b104
1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fobjc-runtime=macosx-fragile-10.5 -fsyntax-only -verify %s 
3 @interface NSException @end
4 void opaque();
6 namespace test0 {
7   void test() {
8     try {
9     } catch (NSException *e) { // expected-warning {{cannot catch an exception thrown with @throw in C++ in the non-unified exception model}}
10     }
11   }