//===----------------------------------------------------------------------===// // // 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 // integral #include #include "test_macros.h" template void test_integral_imp() { static_assert(!std::is_reference::value, ""); static_assert( std::is_arithmetic::value, ""); static_assert( std::is_fundamental::value, ""); static_assert( std::is_object::value, ""); static_assert( std::is_scalar::value, ""); static_assert(!std::is_compound::value, ""); static_assert(!std::is_member_pointer::value, ""); } template void test_integral() { test_integral_imp(); test_integral_imp(); test_integral_imp(); test_integral_imp(); } int main(int, char**) { test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); test_integral(); #ifndef _LIBCPP_HAS_NO_INT128 test_integral<__int128_t>(); test_integral<__uint128_t>(); #endif return 0; }