remove_all_extents.pass.cpp revision bc8d3f97eb5c958007f2713238472e0c1c8fe02c
1//===----------------------------------------------------------------------===//
2//
3// ��������������������The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// type_traits
11
12// remove_all_extents
13
14#include <type_traits>
15
16enum Enum {zero, one_};
17
18int main()
19{
20    static_assert((std::is_same<std::remove_all_extents<int>::type, int>::value), "");
21    static_assert((std::is_same<std::remove_all_extents<const Enum>::type, const Enum>::value), "");
22    static_assert((std::is_same<std::remove_all_extents<int[]>::type, int>::value), "");
23    static_assert((std::is_same<std::remove_all_extents<const int[]>::type, const int>::value), "");
24    static_assert((std::is_same<std::remove_all_extents<int[3]>::type, int>::value), "");
25    static_assert((std::is_same<std::remove_all_extents<const int[3]>::type, const int>::value), "");
26    static_assert((std::is_same<std::remove_all_extents<int[][3]>::type, int>::value), "");
27    static_assert((std::is_same<std::remove_all_extents<const int[][3]>::type, const int>::value), "");
28    static_assert((std::is_same<std::remove_all_extents<int[2][3]>::type, int>::value), "");
29    static_assert((std::is_same<std::remove_all_extents<const int[2][3]>::type, const int>::value), "");
30    static_assert((std::is_same<std::remove_all_extents<int[1][2][3]>::type, int>::value), "");
31    static_assert((std::is_same<std::remove_all_extents<const int[1][2][3]>::type, const int>::value), "");
32}
33