blob: ce781cd936b02026132227851412644dfe61ac60 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// type_traits
// is_literal_type
#include <type_traits>
template <class T>
void test_is_literal_type()
{
static_assert( std::is_literal_type<T>::value, "");
}
template <class T>
void test_is_not_literal_type()
{
static_assert(!std::is_literal_type<T>::value, "");
}
struct A
{
};
struct B
{
B();
};
int main()
{
test_is_literal_type<int> ();
test_is_literal_type<const int> ();
test_is_literal_type<int&> ();
test_is_literal_type<volatile int&> ();
test_is_literal_type<A> ();
test_is_not_literal_type<B> ();
}