1 // RUN: %clang_cc1 %s -triple=i686-pc-win32 -fsyntax-only -verify -fms-extensions -Wunreachable-code
9 f(); // expected-warning{{will never be executed}}
22 } __except(1) { // Filter expression should not be marked as unreachable.
23 // Empty __except body.
33 f(); // expected-warning{{will never be executed}}
38 f(); // expected-warning{{will never be executed}}
49 __leave
; // should exit outer try
52 f(); // expected-warning{{never be executed}}