]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/shared_ptr/cons/weak_ptr_expired.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / shared_ptr / cons / weak_ptr_expired.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
aaf0ca6f 2
99dee823 3// Copyright (C) 2005-2021 Free Software Foundation, Inc.
aaf0ca6f
JW
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
aaf0ca6f
JW
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
aaf0ca6f
JW
19
20// 20.6.6.2 Template class shared_ptr [util.smartptr.shared]
21
22#include <memory>
9a9c7a62 23#include <string>
aaf0ca6f
JW
24#include <testsuite_hooks.h>
25
26struct A { };
27
28// 20.6.6.2.1 shared_ptr constructors [util.smartptr.shared.const]
29
30// Construction from expired weak_ptr
31int
32test01()
33{
e3aaef37 34 bool test = false;
aaf0ca6f
JW
35
36 std::shared_ptr<A> a1(new A);
37 std::weak_ptr<A> wa(a1);
38 a1.reset();
39 VERIFY( wa.expired() );
40 try
41 {
42 std::shared_ptr<A> a2(wa);
43 }
78aff336 44 catch (const std::bad_weak_ptr& e)
aaf0ca6f
JW
45 {
46 // Expected.
78aff336
JW
47 if (e.what() == std::string("bad_weak_ptr"))
48 test = true;
aaf0ca6f 49 }
e3aaef37 50 VERIFY( test );
aaf0ca6f
JW
51
52 return 0;
53}
54
55int
56main()
57{
58 test01();
59 return 0;
60}