]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/20_util/tuple/cons/90700.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / tuple / cons / 90700.cc
1 // Copyright (C) 2019-2023 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // { dg-do compile { target c++11 } }
19 // FIXME [!HOSTED]: avoidable std::allocator usage
20 // { dg-require-effective-target hosted }
21
22 #include <tuple>
23 #include <memory>
24
25 struct X { };
26
27 struct Y
28 {
29 Y(const std::tuple<X>&) = delete;
30 Y(std::tuple<X>&&) { throw 1; }
31 Y(const X&) { }
32 };
33
34 struct Z
35 {
36 Z(X&&) { }
37 Z(const std::tuple<X>&) { throw 1; }
38 Z(std::tuple<X>&&) = delete;
39 };
40
41 void
42 test01()
43 {
44 // PR libstdc++/90700 wrong constraints on constructor
45 const std::allocator<int> a;
46 const std::tuple<X> x;
47
48 static_assert(!std::is_convertible<const std::tuple<X>&, Y>::value, "");
49 static_assert(!std::is_constructible<Y, const std::tuple<X>&>::value, "");
50 static_assert(!std::is_same<Y, X>::value, "");
51 // should use tuple<Y>::tuple<X>(allocator_arg_t, const A&, const tuple<X>&)
52 // and construct Y from X:
53 std::tuple<Y> y(std::allocator_arg, a, x);
54 }
55
56 void
57 test02()
58 {
59 const std::allocator<int> a;
60 std::tuple<X> x;
61
62 static_assert(!std::is_convertible<std::tuple<X>, Z>::value, "");
63 static_assert(!std::is_constructible<Z, std::tuple<X>>::value, "");
64 static_assert(!std::is_same<Z, X>::value, "");
65 // should use tuple<Z>::tuple<X>(allocator_arg_t, const A&, tuple<X>&&)
66 // and construct Z from X:
67 std::tuple<Z> z(std::allocator_arg, a, std::move(x));
68 }