1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
11 // is_copy_constructible
13 #include <type_traits>
14 #include "test_macros.h"
17 void test_is_copy_constructible()
19 static_assert( std::is_copy_constructible
<T
>::value
, "");
21 static_assert( std::is_copy_constructible_v
<T
>, "");
26 void test_is_not_copy_constructible()
28 static_assert(!std::is_copy_constructible
<T
>::value
, "");
30 static_assert(!std::is_copy_constructible_v
<T
>, "");
54 virtual ~Abstract() = 0;
70 void operator=(C
&); // not const
75 test_is_copy_constructible
<A
>();
76 test_is_copy_constructible
<int&>();
77 test_is_copy_constructible
<Union
>();
78 test_is_copy_constructible
<Empty
>();
79 test_is_copy_constructible
<int>();
80 test_is_copy_constructible
<double>();
81 test_is_copy_constructible
<int*>();
82 test_is_copy_constructible
<const int*>();
83 test_is_copy_constructible
<NotEmpty
>();
84 test_is_copy_constructible
<bit_zero
>();
86 test_is_not_copy_constructible
<char[3]>();
87 test_is_not_copy_constructible
<char[]>();
88 test_is_not_copy_constructible
<void>();
89 test_is_not_copy_constructible
<Abstract
>();
90 test_is_not_copy_constructible
<C
>();
91 #if TEST_STD_VER >= 11
92 test_is_not_copy_constructible
<B
>();