summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.eh/terminate2.C
blob: 3a3115843e7c00bac1627f833c8ae34894a80fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do run  }
// Test that an unhandled exception causes us to call terminate.

#include <exception>
#include <cstdlib>

void my_terminate ()
{
  std::exit (0);
}

int main (void)
{
  std::set_terminate (my_terminate);
  throw 1;
  return 1;
}