Hooked the following up to clang: is_class, is_enum, has_nothrow_copy_assign, has_trivial_destructor, has_virtual_destructor, is_pod. Implemented has_copy_assign.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@113373 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -13,7 +13,38 @@
|
||||
|
||||
#include <type_traits>
|
||||
|
||||
class Empty
|
||||
{
|
||||
};
|
||||
|
||||
class NotEmpty
|
||||
{
|
||||
public:
|
||||
virtual ~NotEmpty();
|
||||
};
|
||||
|
||||
union Union {};
|
||||
|
||||
struct bit_zero
|
||||
{
|
||||
int : 0;
|
||||
};
|
||||
|
||||
struct A
|
||||
{
|
||||
A();
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
static_assert((std::has_copy_assign<int>::value), "");
|
||||
static_assert(( std::has_copy_assign<int>::value), "");
|
||||
static_assert((!std::has_copy_assign<const int>::value), "");
|
||||
static_assert((!std::has_copy_assign<int[]>::value), "");
|
||||
static_assert((!std::has_copy_assign<int[3]>::value), "");
|
||||
static_assert((!std::has_copy_assign<int&>::value), "");
|
||||
static_assert(( std::has_copy_assign<A>::value), "");
|
||||
static_assert(( std::has_copy_assign<bit_zero>::value), "");
|
||||
static_assert(( std::has_copy_assign<Union>::value), "");
|
||||
static_assert(( std::has_copy_assign<NotEmpty>::value), "");
|
||||
static_assert(( std::has_copy_assign<Empty>::value), "");
|
||||
}
|
||||
|
Reference in New Issue
Block a user