2010-08-22 02:59:46 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
|
|
|
// rvalue_ref
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void test_rvalue_ref()
|
|
|
|
{
|
|
|
|
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, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2010-09-05 01:28:19 +02:00
|
|
|
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
|
2010-08-22 02:59:46 +02:00
|
|
|
test_rvalue_ref<int&&>();
|
|
|
|
test_rvalue_ref<const int&&>();
|
2010-09-05 01:28:19 +02:00
|
|
|
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
|
2010-08-22 02:59:46 +02:00
|
|
|
}
|