]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/in_place/requirements.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / in_place / requirements.cc
CommitLineData
6458742a 1// { dg-do compile { target c++17 } }
25a69162 2
7adcbafe 3// Copyright (C) 2016-2022 Free Software Foundation, Inc.
25a69162
VV
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.
10
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.
15
c7cbb4da 16// You should have received a copy of the GNU General Public License along
25a69162
VV
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
19
20#include <utility>
21#include <type_traits>
22#include <testsuite_hooks.h>
23
24using std::in_place_t;
25using std::in_place_type_t;
26using std::in_place_index_t;
27
28float f(in_place_type_t<float>);
29double f(in_place_type_t<double>);
30char f(in_place_index_t<0>);
31unsigned int f(in_place_index_t<1>);
32int f(in_place_t);
33
627a2f59
VV
34static_assert(std::is_same<decltype(f(std::in_place)), int>::value);
35static_assert(std::is_same<decltype(f(std::in_place_type<float>)),
36 float>::value);
37static_assert(std::is_same<decltype(f(std::in_place_type<double>)),
38 double>::value);
39static_assert(std::is_same<decltype(f(std::in_place_index<0>)), char>::value);
40static_assert(std::is_same<decltype(f(std::in_place_index<1>)),
41 unsigned int>::value);
25a69162
VV
42
43template <class T, class... Args> float h(in_place_type_t<T>, Args&&...);
44template <size_t N, class... Args> int h(in_place_index_t<N>, Args&&...);
45template <class T> double h(in_place_t, T&&);
46
47static_assert(std::is_same<decltype(h(std::in_place, 1)), double>::value);
627a2f59
VV
48static_assert(std::is_same<decltype(h(std::in_place_type<float>, 1)),
49 float>::value);
50static_assert(std::is_same<decltype(h(std::in_place_index<0>, 1)),
51 int>::value);