//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // type_traits // nullptr_t // is_null_pointer // UNSUPPORTED: c++03, c++11 #include #include // for std::nullptr_t #include "test_macros.h" template void test_nullptr_imp() { static_assert(!std::is_void::value, ""); static_assert( std::is_null_pointer::value, ""); 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, ""); } template void test_nullptr() { test_nullptr_imp(); test_nullptr_imp(); test_nullptr_imp(); test_nullptr_imp(); } struct incomplete_type; int main(int, char**) { test_nullptr(); // LWG#2582 static_assert(!std::is_null_pointer::value, ""); return 0; }