blob: 3218dd9ef3ed333aa88d6dbb5421702537c7b5b2 [file] [log] [blame]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-require-effective-target c++14_down }
#include <exception>
#include <stdlib.h>
void my_unexpected() {
exit (0);
}
void foo() throw () { throw "Hi"; }
int main() {
std::set_unexpected (my_unexpected);
foo();
return 1;
}