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

#include <exception>

void my_unexpected() {
  exit (0);
}

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

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