1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // type_traits
10 
11 // is_move_constructible
12 
13 #include <type_traits>
14 #include "test_macros.h"
15 
16 template <class T>
test_is_move_constructible()17 void test_is_move_constructible()
18 {
19     static_assert( std::is_move_constructible<T>::value, "");
20 #if TEST_STD_VER > 14
21     static_assert( std::is_move_constructible_v<T>, "");
22 #endif
23 }
24 
25 template <class T>
test_is_not_move_constructible()26 void test_is_not_move_constructible()
27 {
28     static_assert(!std::is_move_constructible<T>::value, "");
29 #if TEST_STD_VER > 14
30     static_assert(!std::is_move_constructible_v<T>, "");
31 #endif
32 }
33 
34 class Empty
35 {
36 };
37 
38 class NotEmpty
39 {
40 public:
41     virtual ~NotEmpty();
42 };
43 
44 union Union {};
45 
46 struct bit_zero
47 {
48     int :  0;
49 };
50 
51 class Abstract
52 {
53 public:
54     virtual ~Abstract() = 0;
55 };
56 
57 struct A
58 {
59     A(const A&);
60 };
61 
62 struct B
63 {
64     B(B&&);
65 };
66 
main(int,char **)67 int main(int, char**)
68 {
69     test_is_not_move_constructible<char[3]>();
70     test_is_not_move_constructible<char[]>();
71     test_is_not_move_constructible<void>();
72     test_is_not_move_constructible<Abstract>();
73 
74     test_is_move_constructible<A>();
75     test_is_move_constructible<int&>();
76     test_is_move_constructible<Union>();
77     test_is_move_constructible<Empty>();
78     test_is_move_constructible<int>();
79     test_is_move_constructible<double>();
80     test_is_move_constructible<int*>();
81     test_is_move_constructible<const int*>();
82     test_is_move_constructible<NotEmpty>();
83     test_is_move_constructible<bit_zero>();
84     test_is_move_constructible<B>();
85 
86   return 0;
87 }
88