1 2 3 4 5 6 7 8 9 10 11
// This testcase doesn't actually DO any EH static void foo() {} int main() { try { foo(); return 0; } catch(...) { return 1; } }