URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [eh39.C] - Rev 699
Compare with Previous | Blame | View Log
// { 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();
};
D::D() try : B() {
fail = 1;
} catch (...) {
fail = 0;
throw;
}
main() {
try {
D d;
fail = 1;
} catch (...) {
}
return fail;
}