//===----------------------------------------------------------------------===// // // 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_compound #include <type_traits> #include <cstddef> // for std::nullptr_t #include "test_macros.h" template <class T> void test_is_compound() { static_assert( std::is_compound<T>::value, ""); static_assert( std::is_compound<const T>::value, ""); static_assert( std::is_compound<volatile T>::value, ""); static_assert( std::is_compound<const volatile T>::value, ""); #if TEST_STD_VER > 14 static_assert( std::is_compound_v<T>, ""); static_assert( std::is_compound_v<const T>, ""); static_assert( std::is_compound_v<volatile T>, ""); static_assert( std::is_compound_v<const volatile T>, ""); #endif } template <class T> void test_is_not_compound() { static_assert(!std::is_compound<T>::value, ""); static_assert(!std::is_compound<const T>::value, ""); static_assert(!std::is_compound<volatile T>::value, ""); static_assert(!std::is_compound<const volatile T>::value, ""); #if TEST_STD_VER > 14 static_assert(!std::is_compound_v<T>, ""); static_assert(!std::is_compound_v<const T>, ""); static_assert(!std::is_compound_v<volatile T>, ""); static_assert(!std::is_compound_v<const volatile T>, ""); #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() { test_is_compound<char[3]>(); test_is_compound<char[]>(); test_is_compound<void *>(); test_is_compound<FunctionPtr>(); test_is_compound<int&>(); test_is_compound<int&&>(); test_is_compound<Union>(); test_is_compound<Empty>(); test_is_compound<incomplete_type>(); test_is_compound<bit_zero>(); test_is_compound<int*>(); test_is_compound<const int*>(); test_is_compound<Enum>(); test_is_compound<NotEmpty>(); test_is_compound<Abstract>(); test_is_not_compound<std::nullptr_t>(); test_is_not_compound<void>(); test_is_not_compound<int>(); test_is_not_compound<double>(); }