blob: 073980a5346737f7d02a0d62860bec08481f319d [file] [log] [blame]
// { dg-do run { xfail sparc64-*-elf z8k-*-* arm-*-pe } }
// { dg-options "-fexceptions" }
#include <exception>
void my_unexpected() {
throw 42;
}
template <class T> void foo(T) throw (T) { throw "Hi"; }
main() {
std::set_unexpected (my_unexpected);
try {
foo(1);
} catch (int i) {
if (i == 42)
return 0;
}
return 1;
}