blob: db0c8e1f60eb3e2c5aa32e5f36c0ddacd94fdc06 [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf arm-*-pe
extern "C" int printf(const char *, ...);
void main1() {
throw 1;
}
int main() {
try {
main1();
} catch (...) {
printf("Unwind works!\n");
return 0;
}
return 1;
}