OSDN Git Service

2008-05-05 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 20_util / make_unsigned / requirements / typedefs-1.cc
1 // { dg-options "-std=gnu++0x" }
2
3 // 2007-05-03  Benjamin Kosnik  <bkoz@redhat.com>
4 //
5 // Copyright (C) 2007, 2008 Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library.  This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 2, or (at your option)
11 // any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING.  If not, write to the Free
20 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21 // USA.
22
23 #include <type_traits>
24 #include <testsuite_hooks.h>
25
26 enum test_enum { first_selection };
27
28 void test01()
29 {
30   bool test __attribute__((unused)) = true;
31   using std::make_unsigned;
32   using std::is_same;
33   using std::is_unsigned;
34
35   // Positive tests.
36   typedef make_unsigned<const unsigned int>::type       test2_type;
37   VERIFY( (is_same<test2_type, const unsigned int>::value) );
38
39   typedef make_unsigned<const signed int>::type         test21c_type;
40   VERIFY( (is_same<test21c_type, const unsigned int>::value) );
41
42   typedef make_unsigned<volatile signed int>::type      test21v_type;
43   VERIFY( (is_same<test21v_type, volatile unsigned int>::value) );
44
45   typedef make_unsigned<const volatile signed int>::type        test21cv_type;
46   VERIFY( (is_same<test21cv_type, const volatile unsigned int>::value) );
47
48   typedef make_unsigned<const char>::type       test22_type;
49   VERIFY( (is_same<test22_type, const unsigned char>::value) );
50
51 #ifdef _GLIBCXX_USE_WCHAR_T
52   typedef make_unsigned<volatile wchar_t>::type         test23_type;
53   VERIFY( (is_same<test23_type, volatile wchar_t>::value) );
54 #endif
55
56   // Chapter 48, chapter 20. Smallest rank such that new unsigned type
57   // same size.
58   typedef make_unsigned<test_enum>::type        test25_type;
59   VERIFY( is_unsigned<test25_type>::value );
60   VERIFY( sizeof(test25_type) == sizeof(test_enum) );
61 }
62
63 int main()
64 {
65   test01();
66   return 0;
67 }