aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh34.C
blob: a1be275af472f620df096bf0d339bc422c93c467 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*

void my_unexpected() {
  exit (0);
}

foo() throw () { throw "Hi"; }

main() {
  set_unexpected (my_unexpected);
  foo();
  return 1;
}