blob: 0505db168b22e7b950943c0ed9af571ffbad78ed [file] [log] [blame]
// Special g++ Options: -fexceptions -O9
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
void main1() {
throw 1;
}
int main() {
try {
main1();
} catch (...) {
return 0;
}
return 1;
}