]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/shared_ptr/cons/unique_ptr_neg.cc
call.c (struct conversion_info): Rename 'from_type' to 'from'.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / shared_ptr / cons / unique_ptr_neg.cc
CommitLineData
aaf0ca6f
JW
1// { dg-options "-std=gnu++0x" }
2// { dg-do compile }
3
aa118a03 4// Copyright (C) 2008-2014 Free Software Foundation, Inc.
aaf0ca6f
JW
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
748086b7 9// Free Software Foundation; either version 3, or (at your option)
aaf0ca6f
JW
10// any later version.
11
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.
16
17// You should have received a copy of the GNU General Public License along
748086b7
JJ
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
aaf0ca6f 20
640cbe76 21// 20.7.12.2 Template class shared_ptr [util.smartptr.shared]
aaf0ca6f
JW
22
23#include <memory>
24#include <testsuite_hooks.h>
25
26struct A { };
aaf0ca6f 27
640cbe76 28// 20.7.12.2.1 shared_ptr constructors [util.smartptr.shared.const]
aaf0ca6f 29
640cbe76 30// Construction from lvalue unique_ptr
aaf0ca6f
JW
31int
32test01()
33{
34 bool test __attribute__((unused)) = true;
35
640cbe76 36 std::unique_ptr<A> a;
89606913 37 std::shared_ptr<A> p(a); // { dg-error "" }
aaf0ca6f
JW
38
39 return 0;
40}
41
42int
43main()
44{
45 test01();
46 return 0;
47}
377a5364 48// { dg-prune-output "initializing argument" }