[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Sema / warn-unreachable.mm
blobbb573b875c569d00c78f453e1bcf2b60208733a7
1 // RUN: %clang_cc1 -fsyntax-only -fobjc-exceptions -fcxx-exceptions -verify -Wunreachable-code %s
3 void f();
5 void g3() {
6   try {
7     @try {
8       f();
9       throw 4; // caught by @catch, not by outer c++ catch.
10       f(); // expected-warning {{will never be executed}}
11     } @catch (...) {
12     }
13     f(); // not-unreachable
14   } catch (...) {
15   }