// RUN: %clang_cc1 -fsyntax-only -fobjc-exceptions -fcxx-exceptions -verify -Wunreachable-code %s
voidf();voidg3(){try{@try{f();throw4;// caught by @catch, not by outer c++ catch.
f();// expected-warning {{will never be executed}}
}@catch(...){}f();// not-unreachable
}catch(...){}}