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
|
|
|
|
|
|
|
|
// enum
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void test_enum_imp()
|
|
|
|
{
|
|
|
|
static_assert(!std::is_void<T>::value, "");
|
|
|
|
static_assert(!std::is_integral<T>::value, "");
|
|
|
|
static_assert(!std::is_floating_point<T>::value, "");
|
|
|
|
static_assert(!std::is_array<T>::value, "");
|
|
|
|
static_assert(!std::is_pointer<T>::value, "");
|
|
|
|
static_assert(!std::is_lvalue_reference<T>::value, "");
|
|
|
|
static_assert(!std::is_rvalue_reference<T>::value, "");
|
|
|
|
static_assert(!std::is_member_object_pointer<T>::value, "");
|
|
|
|
static_assert(!std::is_member_function_pointer<T>::value, "");
|
|
|
|
static_assert( std::is_enum<T>::value, "");
|
|
|
|
static_assert(!std::is_union<T>::value, "");
|
|
|
|
static_assert(!std::is_class<T>::value, "");
|
|
|
|
static_assert(!std::is_function<T>::value, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void test_enum()
|
|
|
|
{
|
|
|
|
test_enum_imp<T>();
|
|
|
|
test_enum_imp<const T>();
|
|
|
|
test_enum_imp<volatile T>();
|
|
|
|
test_enum_imp<const volatile T>();
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Enum {zero, one};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test_enum<Enum>();
|
|
|
|
}
|