Add testcase of PR c++/92542, already fixed.
[official-gcc.git] / libstdc++-v3 / testsuite / 18_support / exception_ptr / 62258.cc
blobdcd8c9aaa09b178a8d5cd62352c1891c1650e646
1 // { dg-options "-Wno-deprecated" }
2 // { dg-do run { target c++11 } }
4 // Copyright (C) 2015-2020 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 // PR libstdc++/62258
23 #include <exception>
24 #include <testsuite_hooks.h>
26 struct check_on_destruct
28 ~check_on_destruct();
31 check_on_destruct::~check_on_destruct()
33 VERIFY(std::uncaught_exception());
36 int main ()
38 VERIFY(!std::uncaught_exception());
40 try
42 check_on_destruct check;
44 try
46 throw 1;
48 catch (...)
50 VERIFY(!std::uncaught_exception());
52 std::rethrow_exception(std::current_exception());
55 catch (...)
57 VERIFY(!std::uncaught_exception());
60 VERIFY(!std::uncaught_exception());