//===----------------------------------------------------------------------===// // // 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_object #include #include // for std::nullptr_t #include "test_macros.h" template void test_is_object() { static_assert( std::is_object::value, ""); static_assert( std::is_object::value, ""); static_assert( std::is_object::value, ""); static_assert( std::is_object::value, ""); #if TEST_STD_VER > 14 static_assert( std::is_object_v, ""); static_assert( std::is_object_v, ""); static_assert( std::is_object_v, ""); static_assert( std::is_object_v, ""); #endif } template void test_is_not_object() { static_assert(!std::is_object::value, ""); static_assert(!std::is_object::value, ""); static_assert(!std::is_object::value, ""); static_assert(!std::is_object::value, ""); #if TEST_STD_VER > 14 static_assert(!std::is_object_v, ""); static_assert(!std::is_object_v, ""); static_assert(!std::is_object_v, ""); static_assert(!std::is_object_v, ""); #endif } class incomplete_type; class Empty { }; class NotEmpty { virtual ~NotEmpty(); }; union Union {}; struct bit_zero { int : 0; }; class Abstract { virtual ~Abstract() = 0; }; enum Enum {zero, one}; typedef void (*FunctionPtr)(); int main() { // An object type is a (possibly cv-qualified) type that is not a function type, // not a reference type, and not a void type. test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_object(); test_is_not_object(); test_is_not_object(); test_is_not_object(); test_is_not_object(); }