blob: e8b87bf30f7ea38e89b5699f63d1974082d7ed15 [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
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;
}