2010-08-22 02:59:46 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-22 02:59:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
|
|
|
// rank
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
template <class T, unsigned A>
|
|
|
|
void test_rank()
|
|
|
|
{
|
|
|
|
static_assert( std::rank<T>::value == A, "");
|
|
|
|
static_assert( std::rank<const T>::value == A, "");
|
|
|
|
static_assert( std::rank<volatile T>::value == A, "");
|
|
|
|
static_assert( std::rank<const volatile T>::value == A, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
class Class
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~Class();
|
|
|
|
};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test_rank<void, 0>();
|
|
|
|
test_rank<int&, 0>();
|
|
|
|
test_rank<Class, 0>();
|
|
|
|
test_rank<int*, 0>();
|
|
|
|
test_rank<const int*, 0>();
|
|
|
|
test_rank<int, 0>();
|
|
|
|
test_rank<double, 0>();
|
|
|
|
test_rank<bool, 0>();
|
|
|
|
test_rank<unsigned, 0>();
|
|
|
|
|
|
|
|
test_rank<char[3], 1>();
|
|
|
|
test_rank<char[][3], 2>();
|
|
|
|
test_rank<char[][4][3], 3>();
|
|
|
|
}
|