1 // Copyright (C) 2017-2025 Free Software Foundation, Inc.
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)
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.
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/>.
18 // { dg-do compile { target c++17 } }
21 #include <testsuite_iterators.h>
22 #include <testsuite_allocator.h>
25 using input_iterator_seq
26 = __gnu_test::test_container
<T
, __gnu_test::input_iterator_wrapper
>;
28 template<typename T
, typename U
> struct require_same
;
29 template<typename T
> struct require_same
<T
, T
> { using type
= void; };
31 template<typename T
, typename U
>
32 typename require_same
<T
, U
>::type
38 std::deque
<unsigned> s0
;
41 check_type
<std::deque
<unsigned>>(s1
);
43 std::deque s2
= std::move(s0
);
44 check_type
<std::deque
<unsigned>>(s2
);
46 const std::deque s3
= s0
;
47 check_type
<const std::deque
<unsigned>>(s3
);
49 const std::deque s4
= s3
;
50 check_type
<const std::deque
<unsigned>>(s4
);
57 input_iterator_seq
<unsigned> seq(a
);
59 std::deque
s1(seq
.begin(), seq
.end());
60 check_type
<std::deque
<unsigned>>(s1
);
62 std::deque
s2(seq
.begin(), seq
.end(), std::allocator
<unsigned>());
63 check_type
<std::deque
<unsigned>>(s2
);
65 std::deque
s3(1U, 2L);
66 check_type
<std::deque
<long>>(s3
);
68 std::deque
s4(1U, 2L, std::allocator
<long>());
69 check_type
<std::deque
<long>>(s4
);
75 struct Alloc
: __gnu_test::SimpleAllocator
<T
>
80 Alloc(const Alloc
<U
>&) { }
86 // P1518R2 - Stop overconstraining allocators in container deduction guides.
87 // This is a C++23 feature but we support it for C++17 too.
89 using Deque
= std::deque
<unsigned, Alloc
<unsigned>>;
94 check_type
<Deque
>(s1
);
96 std::deque
s2(std::move(d
), p
);
97 check_type
<Deque
>(s2
);