blob: 7d72565e40ca193c8e117a6ae5ec43e0027f4b51 [file] [log] [blame]
Howard Hinnantc52f43e2010-08-22 00:59:46 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantc52f43e2010-08-22 00:59:46 +00007//
8//===----------------------------------------------------------------------===//
9
10// type_traits
11
Howard Hinnant1468b662010-11-19 22:17:28 +000012// is_trivially_copy_assignable
Howard Hinnantc52f43e2010-08-22 00:59:46 +000013
14#include <type_traits>
15
Marshall Clow933afa92013-07-04 00:10:01 +000016template <class T>
17void test_has_trivially_copy_assignable()
Howard Hinnantc52f43e2010-08-22 00:59:46 +000018{
Marshall Clow933afa92013-07-04 00:10:01 +000019 static_assert( std::is_trivially_copy_assignable<T>::value, "");
20}
21
22template <class T>
23void test_has_not_trivially_copy_assignable()
24{
25 static_assert(!std::is_trivially_copy_assignable<T>::value, "");
Howard Hinnantc52f43e2010-08-22 00:59:46 +000026}
27
28class Empty
29{
30};
31
32class NotEmpty
33{
34 virtual ~NotEmpty();
35};
36
37union Union {};
38
39struct bit_zero
40{
41 int : 0;
42};
43
44class Abstract
45{
46 virtual ~Abstract() = 0;
47};
48
49struct A
50{
51 A& operator=(const A&);
52};
53
54int main()
55{
Marshall Clow933afa92013-07-04 00:10:01 +000056 test_has_trivially_copy_assignable<int&>();
57 test_has_trivially_copy_assignable<Union>();
58 test_has_trivially_copy_assignable<Empty>();
59 test_has_trivially_copy_assignable<int>();
60 test_has_trivially_copy_assignable<double>();
61 test_has_trivially_copy_assignable<int*>();
62 test_has_trivially_copy_assignable<const int*>();
63 test_has_trivially_copy_assignable<bit_zero>();
Howard Hinnantc52f43e2010-08-22 00:59:46 +000064
Marshall Clow933afa92013-07-04 00:10:01 +000065 test_has_not_trivially_copy_assignable<void>();
66 test_has_not_trivially_copy_assignable<A>();
67 test_has_not_trivially_copy_assignable<NotEmpty>();
68 test_has_not_trivially_copy_assignable<Abstract>();
69 test_has_not_trivially_copy_assignable<const Empty>();
70
Howard Hinnantc52f43e2010-08-22 00:59:46 +000071}