blob: 735d05fa6ee4b74edaa9fb43f3dedc5c2d055eee [file] [log] [blame]
Howard Hinnant1468b662010-11-19 22:17:28 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// type_traits
11
12// is_trivially_assignable
13
14#include <type_traits>
15
Marshall Clow933afa92013-07-04 00:10:01 +000016template <class T, class U>
17void test_is_trivially_assignable()
18{
19 static_assert(( std::is_trivially_assignable<T, U>::value), "");
20}
21
22template <class T, class U>
23void test_is_not_trivially_assignable()
24{
25 static_assert((!std::is_trivially_assignable<T, U>::value), "");
26}
27
Howard Hinnant1468b662010-11-19 22:17:28 +000028struct A
29{
30};
31
32struct B
33{
34 void operator=(A);
35};
36
Marshall Clowd132bf42014-09-22 23:58:00 +000037struct C
38{
39 void operator=(C&); // not const
40};
41
Howard Hinnant1468b662010-11-19 22:17:28 +000042int main()
43{
Marshall Clow933afa92013-07-04 00:10:01 +000044 test_is_trivially_assignable<int&, int&> ();
45 test_is_trivially_assignable<int&, int> ();
46 test_is_trivially_assignable<int&, double> ();
47
48 test_is_not_trivially_assignable<int, int&> ();
49 test_is_not_trivially_assignable<int, int> ();
50 test_is_not_trivially_assignable<B, A> ();
51 test_is_not_trivially_assignable<A, B> ();
Marshall Clowd132bf42014-09-22 23:58:00 +000052 test_is_not_trivially_assignable<C&, C&> ();
Howard Hinnant1468b662010-11-19 22:17:28 +000053}