1 // RUN: %clang_cc1 -fsyntax-only -fobjc-exceptions -verify -Wunreachable-code %s
9 f(); // expected-warning{{will never be executed}}
22 } @catch(id i = nil) { // Catch block should not be marked as unreachable.
33 f(); // expected-warning{{will never be executed}}
38 f(); // expected-warning{{will never be executed}}
49 @throw @""; // should exit outer try
52 f(); // expected-warning{{never be executed}}