blob: c3fc7ac0a3df9214ee66d0ecec6b6978b4570f23 [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_move_assignable
Howard Hinnantc52f43e2010-08-22 00:59:46 +000013
14#include <type_traits>
15
Marshall Clow933afa92013-07-04 00:10:01 +000016template <class T>
Howard Hinnantc52f43e2010-08-22 00:59:46 +000017void test_has_trivial_assign()
18{
Marshall Clow933afa92013-07-04 00:10:01 +000019 static_assert( std::is_trivially_move_assignable<T>::value, "");
20}
21
22template <class T>
23void test_has_not_trivial_assign()
24{
25 static_assert(!std::is_trivially_move_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_trivial_assign<int&>();
57 test_has_trivial_assign<Union>();
58 test_has_trivial_assign<Empty>();
59 test_has_trivial_assign<int>();
60 test_has_trivial_assign<double>();
61 test_has_trivial_assign<int*>();
62 test_has_trivial_assign<const int*>();
63 test_has_trivial_assign<bit_zero>();
Howard Hinnantc52f43e2010-08-22 00:59:46 +000064
Marshall Clow933afa92013-07-04 00:10:01 +000065 test_has_not_trivial_assign<void>();
66 test_has_not_trivial_assign<A>();
67 test_has_not_trivial_assign<NotEmpty>();
68 test_has_not_trivial_assign<Abstract>();
69 test_has_not_trivial_assign<const Empty>();
70
Howard Hinnantc52f43e2010-08-22 00:59:46 +000071}