rt_gccstream/gcc/testsuite/g++.old-deja/g++.mike/eh35.C

18 lines
267 B
C

// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
main() {
try {
throw 'a';
} catch (char a) {
try {
throw 'a';
} catch (int i) {
return 1;
} catch (char c) {
return 0;
}
}
return 1;
}