2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / eh51.C
blob073980a5346737f7d02a0d62860bec08481f319d
1 // { dg-do run { xfail sparc64-*-elf z8k-*-* arm-*-pe } }
2 // { dg-options "-fexceptions" }
4 #include <exception>
6 void my_unexpected() {
7   throw 42;
10 template <class T> void foo(T) throw (T) { throw "Hi"; }
12 main() {
13   std::set_unexpected (my_unexpected);
14   try {
15     foo(1);
16   } catch (int i) {
17     if (i == 42)
18       return 0;
19   }
20   return 1;