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