Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / shared_ptr / cons / pointer.cc
blob25fb9a8268ba878e36e04c18059ec94cf0011ea3
1 // { dg-options "-std=gnu++0x" }
3 // Copyright (C) 2005-2013 Free Software Foundation, Inc.
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
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // 20.6.6.2 Template class shared_ptr [util.smartptr.shared]
22 #include <memory>
23 #include <testsuite_hooks.h>
25 struct A { };
26 struct B : A { };
29 // 20.6.6.2.1 shared_ptr constructors [util.smartptr.shared.const]
31 // Construction from pointer
33 int
34 test01()
36 bool test __attribute__((unused)) = true;
38 A * const a = 0;
39 std::shared_ptr<A> p(a);
40 VERIFY( p.get() == 0 );
41 VERIFY( p.use_count() == 1 );
43 return 0;
46 int
47 test02()
49 bool test __attribute__((unused)) = true;
51 A * const a = new A;
52 std::shared_ptr<A> p(a);
53 VERIFY( p.get() == a );
54 VERIFY( p.use_count() == 1 );
56 return 0;
60 int
61 test03()
63 bool test __attribute__((unused)) = true;
65 B * const b = new B;
66 std::shared_ptr<A> p(b);
67 VERIFY( p.get() == b );
68 VERIFY( p.use_count() == 1 );
70 return 0;
73 int
74 main()
76 test01();
77 test02();
78 test03();
79 return 0;