//===----------------------------------------------------------------------===// // // 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 // rvalue_ref #include template void test_rvalue_ref() { static_assert(!std::is_void::value, ""); #if _LIBCPP_STD_VER > 11 static_assert(!std::is_null_pointer::value, ""); #endif static_assert(!std::is_integral::value, ""); static_assert(!std::is_floating_point::value, ""); static_assert(!std::is_array::value, ""); static_assert(!std::is_pointer::value, ""); static_assert(!std::is_lvalue_reference::value, ""); static_assert( std::is_rvalue_reference::value, ""); static_assert(!std::is_member_object_pointer::value, ""); static_assert(!std::is_member_function_pointer::value, ""); static_assert(!std::is_enum::value, ""); static_assert(!std::is_union::value, ""); static_assert(!std::is_class::value, ""); static_assert(!std::is_function::value, ""); } int main() { #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES test_rvalue_ref(); test_rvalue_ref(); #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES }