Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / utilities / meta / meta.unary / meta.unary.prop / is_trivially_move_constructible.pass.cpp
blob3503648ddea6e95c1bfa22937507a926a517751a
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 //===----------------------------------------------------------------------===//
9 // type_traits
11 // is_trivially_move_constructible
13 #include <type_traits>
14 #include "test_macros.h"
16 template <class T>
17 void test_is_trivially_move_constructible()
19 static_assert( std::is_trivially_move_constructible<T>::value, "");
20 #if TEST_STD_VER > 14
21 static_assert( std::is_trivially_move_constructible_v<T>, "");
22 #endif
25 template <class T>
26 void test_has_not_trivial_move_constructor()
28 static_assert(!std::is_trivially_move_constructible<T>::value, "");
29 #if TEST_STD_VER > 14
30 static_assert(!std::is_trivially_move_constructible_v<T>, "");
31 #endif
34 class Empty
38 class NotEmpty
40 public:
41 virtual ~NotEmpty();
44 union Union {};
46 struct bit_zero
48 int : 0;
51 class Abstract
53 public:
54 virtual ~Abstract() = 0;
57 struct A
59 A(const A&);
62 #if TEST_STD_VER >= 11
64 struct MoveOnly1
66 MoveOnly1(MoveOnly1&&);
69 struct MoveOnly2
71 MoveOnly2(MoveOnly2&&) = default;
74 #endif
76 int main(int, char**)
78 test_has_not_trivial_move_constructor<void>();
79 test_has_not_trivial_move_constructor<A>();
80 test_has_not_trivial_move_constructor<Abstract>();
81 test_has_not_trivial_move_constructor<NotEmpty>();
83 test_is_trivially_move_constructible<Union>();
84 test_is_trivially_move_constructible<Empty>();
85 test_is_trivially_move_constructible<int>();
86 test_is_trivially_move_constructible<double>();
87 test_is_trivially_move_constructible<int*>();
88 test_is_trivially_move_constructible<const int*>();
89 test_is_trivially_move_constructible<bit_zero>();
91 #if TEST_STD_VER >= 11
92 static_assert(!std::is_trivially_move_constructible<MoveOnly1>::value, "");
93 static_assert( std::is_trivially_move_constructible<MoveOnly2>::value, "");
94 #endif
96 return 0;