OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / noexcept06.C
1 // Test that checking of a nothrow specification uses the one on the
2 // definition.
3 // { dg-options "-std=c++0x" }
4 // { dg-do run }
5
6 #include <exception>
7 #include <cstdlib>
8
9 void my_unexpected ()
10 {
11   std::abort ();
12 }
13 void my_terminate ()
14 {
15   std::exit (0);
16 }
17
18 void f() throw();
19 void f() noexcept
20 {
21   throw 1;
22 }
23
24 int main()
25 {
26   std::set_unexpected (my_unexpected);
27   std::set_terminate (my_terminate);
28   f();
29   return 1;
30 }