b64f8b07c1
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@119395 91177308-0d34-0410-b5e6-96231b3b80d8
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
|
|
// has_copy_assign
|
|
|
|
#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<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), "");
|
|
}
|