1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// { dg-do compile } // { dg-options "-fno-exceptions" } struct S { ~S(); }; extern void bar(); void f0() { S s; bar(); } void f1() { try {} catch (...) {} // { dg-error "" } } void f2() throw(int) { bar(); }