]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/make_unsigned/requirements/typedefs-2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / make_unsigned / requirements / typedefs-2.cc
CommitLineData
44916fe1
PC
1// { dg-options "-std=gnu++11 -funsigned-char -fshort-enums" }
2// { dg-options "-std=gnu++11 -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux-* } }
3// { dg-do compile }
7b50cdef
BK
4
5// 2007-05-03 Benjamin Kosnik <bkoz@redhat.com>
6//
5624e564 7// Copyright (C) 2007-2015 Free Software Foundation, Inc.
7b50cdef
BK
8//
9// This file is part of the GNU ISO C++ Library. This library is free
10// software; you can redistribute it and/or modify it under the
11// terms of the GNU General Public License as published by the
748086b7 12// Free Software Foundation; either version 3, or (at your option)
7b50cdef
BK
13// any later version.
14//
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License along
748086b7
JJ
21// with this library; see the file COPYING3. If not see
22// <http://www.gnu.org/licenses/>.
7b50cdef
BK
23
24#include <type_traits>
7b50cdef 25
a0230468
MM
26// Ensure that this enum has "short" as its underlying type.
27enum test_enum { first_selection = ((unsigned char)-1) + 1 };
7b50cdef
BK
28
29void test01()
30{
7b50cdef
BK
31 using std::make_unsigned;
32 using std::is_same;
53caffbe 33 using std::is_unsigned;
bb85ec6e 34 using std::is_volatile;
7b50cdef
BK
35
36 // Positive tests.
37 typedef make_unsigned<const unsigned int>::type test2_type;
44916fe1 38 static_assert(is_same<test2_type, const unsigned int>::value, "");
7b50cdef
BK
39
40 typedef make_unsigned<const signed int>::type test21c_type;
44916fe1 41 static_assert(is_same<test21c_type, const unsigned int>::value, "");
7b50cdef
BK
42
43 typedef make_unsigned<volatile signed int>::type test21v_type;
44916fe1 44 static_assert(is_same<test21v_type, volatile unsigned int>::value, "");
7b50cdef
BK
45
46 typedef make_unsigned<const volatile signed int>::type test21cv_type;
44916fe1
PC
47 static_assert(is_same<test21cv_type,
48 const volatile unsigned int>::value, "");
7b50cdef
BK
49
50 typedef make_unsigned<const char>::type test22_type;
44916fe1 51 static_assert(is_same<test22_type, const unsigned char>::value, "");
7b50cdef 52
2c4b148c 53#ifdef _GLIBCXX_USE_WCHAR_T
7b50cdef 54 typedef make_unsigned<volatile wchar_t>::type test23_type;
bb85ec6e
JW
55 static_assert(is_unsigned<test23_type>::value
56 && is_volatile<test23_type>::value
57 && sizeof(test23_type) == sizeof(volatile wchar_t), "");
2c4b148c 58#endif
7b50cdef 59
fd1e62c2 60 typedef make_unsigned<test_enum>::type test24_type;
44916fe1 61 static_assert(is_same<test24_type, unsigned short>::value, "");
6d585f01
PC
62
63 // GNU Extensions.
64#ifdef _GLIBCXX_USE_INT128
fd1e62c2 65 typedef make_unsigned<unsigned __int128>::type test25_type;
44916fe1 66 static_assert(is_same<test25_type, unsigned __int128>::value, "");
6d585f01 67
fd1e62c2 68 typedef make_unsigned<__int128>::type test26_type;
44916fe1 69 static_assert(is_same<test26_type, unsigned __int128>::value, "");
6d585f01 70#endif
7b50cdef 71}