// Copyright (C) 2017-2019 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING3. If not see // . // { dg-options "-std=gnu++17" } // { dg-do compile { target c++17 } } #include #include template using input_iterator_seq = __gnu_test::test_container; template struct require_same; template struct require_same { using type = void; }; template typename require_same::type check_type(U&) { } void test01() { std::deque s0; std::deque s1 = s0; check_type>(s1); std::deque s2 = std::move(s0); check_type>(s2); const std::deque s3 = s0; check_type>(s3); const std::deque s4 = s3; check_type>(s4); } void test02() { unsigned a[1] = {}; input_iterator_seq seq(a); std::deque s1(seq.begin(), seq.end()); check_type>(s1); std::deque s2(seq.begin(), seq.end(), std::allocator()); check_type>(s2); std::deque s3(1U, 2L); check_type>(s3); std::deque s4(1U, 2L, std::allocator()); check_type>(s4); }