blob: 54d10959a572d2b1eafbc2aa2b14ec94cf7dd2d9 [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
int fail = 1;
class B {
public:
B() { throw 1; }
};
class D : public B {
public:
D();
};
D::D() try : B() {
fail = 1;
} catch (...) {
fail = 0;
throw;
}
main() {
try {
D d;
fail = 1;
} catch (...) {
}
return fail;
}