blob: d9bd34c58e6cc18377679b81dd05506e08256ec4 [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
main() {
try {
throw 'a';
} catch (char a) {
try {
throw 'a';
} catch (int i) {
return 1;
} catch (char c) {
return 0;
}
}
return 1;
}