2010-08-22 02:59:46 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-22 02:59:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
2010-11-19 23:17:28 +01:00
|
|
|
// is_trivially_copy_assignable
|
2010-08-22 02:59:46 +02:00
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
2010-09-08 01:38:59 +02:00
|
|
|
template <class T, bool Result>
|
2010-08-22 02:59:46 +02:00
|
|
|
void test_has_trivial_assign()
|
|
|
|
{
|
2010-11-19 23:17:28 +01:00
|
|
|
static_assert(std::is_trivially_copy_assignable<T>::value == Result, "");
|
2010-08-22 02:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class Empty
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
class NotEmpty
|
|
|
|
{
|
|
|
|
virtual ~NotEmpty();
|
|
|
|
};
|
|
|
|
|
|
|
|
union Union {};
|
|
|
|
|
|
|
|
struct bit_zero
|
|
|
|
{
|
|
|
|
int : 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Abstract
|
|
|
|
{
|
|
|
|
virtual ~Abstract() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct A
|
|
|
|
{
|
|
|
|
A& operator=(const A&);
|
|
|
|
};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2010-09-08 01:38:59 +02:00
|
|
|
test_has_trivial_assign<void, false>();
|
|
|
|
test_has_trivial_assign<A, false>();
|
2010-11-19 23:17:28 +01:00
|
|
|
test_has_trivial_assign<int&, true>();
|
2010-09-08 01:38:59 +02:00
|
|
|
test_has_trivial_assign<NotEmpty, false>();
|
|
|
|
test_has_trivial_assign<Abstract, false>();
|
|
|
|
test_has_trivial_assign<const Empty, false>();
|
2010-08-22 02:59:46 +02:00
|
|
|
|
2010-09-08 01:38:59 +02:00
|
|
|
test_has_trivial_assign<Union, true>();
|
|
|
|
test_has_trivial_assign<Empty, true>();
|
|
|
|
test_has_trivial_assign<int, true>();
|
|
|
|
test_has_trivial_assign<double, true>();
|
|
|
|
test_has_trivial_assign<int*, true>();
|
|
|
|
test_has_trivial_assign<const int*, true>();
|
|
|
|
test_has_trivial_assign<bit_zero, true>();
|
2010-08-22 02:59:46 +02:00
|
|
|
}
|