]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/array/tuple_interface/tuple_element.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / array / tuple_interface / tuple_element.cc
CommitLineData
52066eae 1// { dg-do compile { target c++11 } }
71743a68 2//
7adcbafe 3// Copyright (C) 2011-2022 Free Software Foundation, Inc.
bfef3a71
BK
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.
71743a68 10//
bfef3a71
BK
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.
71743a68 15//
bfef3a71
BK
16// You should have received a copy of the GNU General Public License along
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
19
1b24fb4c
JW
20// NB: Don't include any other headers in this file.
21// LWG 2212 requires <array> to define tuple_element<cv T> specializations.
bfef3a71 22#include <array>
71743a68
PC
23
24void
25test01()
a9260b7e 26{
1b24fb4c
JW
27 using std::array;
28 using std::tuple_element;
29 // This relies on the fact that <utility> includes <type_traits>:
30 using std::is_same;
71743a68 31
9a9c7a62 32 const std::size_t len = 3;
9771644a 33 typedef array<int, len> array_type;
de0830e1
VV
34
35 static_assert(is_same<tuple_element<0, array_type>::type, int>::value, "" );
36 static_assert(is_same<tuple_element<1, array_type>::type, int>::value, "" );
37 static_assert(is_same<tuple_element<2, array_type>::type, int>::value, "");
38
39 static_assert(is_same<tuple_element<0, const array_type>::type,
40 const int>::value, "");
41 static_assert(is_same<tuple_element<1, const array_type>::type,
42 const int>::value, "");
43 static_assert(is_same<tuple_element<2, const array_type>::type,
44 const int>::value, "");
45
46 static_assert(is_same<tuple_element<0, volatile array_type>::type,
47 volatile int>::value, "");
48 static_assert(is_same<tuple_element<1, volatile array_type>::type,
49 volatile int>::value, "");
50 static_assert( (is_same<tuple_element<2, volatile array_type>::type,
4ed6e524 51 volatile int>::value == true), "" );
de0830e1
VV
52
53 static_assert(is_same<tuple_element<0, const volatile array_type>::type,
54 const volatile int>::value, "");
55 static_assert(is_same<tuple_element<1, const volatile array_type>::type,
56 const volatile int>::value, "");
57 static_assert(is_same<tuple_element<2, const volatile array_type>::type,
58 const volatile int>::value, "");
71743a68 59}
bfef3a71
BK
60
61int main()
62{
71743a68 63 test01();
bfef3a71
BK
64 return 0;
65}