rt_gccstream/gcc/testsuite/g++.old-deja/g++.mike/eh3.C

22 lines
286 B
C

// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
class foo {
public:
class error {};
void cause_error(void) { throw error(); }
};
int main(void)
{
foo f;
try {
f.cause_error();
}
catch (foo::error&) {
return 0;
}
return 1;
}