Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 18_support / nested_exception / rethrow_if_nested.cc
blobfb49dfc76c550c8afb346ba9601a5b122d1a6625
1 // { dg-options "-std=gnu++0x" }
2 // { dg-require-atomic-builtins "" }
4 // Copyright (C) 2009-2013 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3. If not see
19 // <http://www.gnu.org/licenses/>.
21 #include <exception>
22 #include <testsuite_hooks.h>
24 struct derived : std::nested_exception { };
26 struct base { virtual ~base() noexcept; };
27 inline base::~base() noexcept = default;
29 struct derived2 : base, std::nested_exception { };
31 void test01()
33 bool test __attribute__((unused)) = false;
35 try
37 throw 42;
39 catch (...)
41 derived d;
42 try
44 std::rethrow_if_nested(d);
46 catch (const int& i)
48 test = true;
49 VERIFY( i == 42 );
53 VERIFY( test );
56 void test02()
58 bool test __attribute__((unused)) = false;
60 try
62 throw base();
64 catch (const base& b)
66 std::rethrow_if_nested(b);
67 test = true;
70 VERIFY( test );
73 void test03()
75 bool test __attribute__((unused)) = false;
77 try
79 throw 42;
81 catch (...)
83 try
85 throw derived2();
87 catch (const base& b)
89 try
91 std::rethrow_if_nested(b);
93 catch (const int& i)
95 VERIFY( i == 42 );
96 test = true;
101 VERIFY( test );
105 int main()
107 test01();
108 test02();
109 test03();
110 return 0;