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