blob: 59472fd26e8d306625ec5a5149a4ad54f58ab633 [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf arm-*-pe
class foo {
public:
class error {};
void cause_error(void) { throw "Hello World!"; }
};
int main(void)
{
foo f;
try {
f.cause_error();
}
catch (const char cp[]) {
return 0;
}
return 1;
}