blob: a38e2ebc7704c6fe992c88b488ad75c289617496 [file] [log] [blame]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
void foo() {
int i;
i = 42;
throw i;
}
void ee(int *);
void bar() {
int i = 2;
ee(&i);
}
void ee(int *) { }
main() {
try {
foo();
return 3;
} catch (int& i) {
bar();
return i != 42;
}
return 2;
}