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