blob: f08836064c4c2fae993b2ab892c671b1051471d5 [file] [log] [blame]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
int fail = 1;
class B {
public:
B() { throw 1; }
};
class D : public B {
public:
D() try : B() {
fail = 1;
} catch (char c) {
fail = 1;
throw;
} catch (...) {
fail = 0;
throw;
}
};
int
main() {
try {
D d;
fail = 1;
} catch (...) {
}
return fail;
}