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_default_constructible
13 #include <type_traits>
14 #include "test_macros.h"
17 void test_is_default_constructible()
19 static_assert( std::is_default_constructible
<T
>::value
, "");
20 static_assert( std::is_default_constructible
<const T
>::value
, "");
21 static_assert( std::is_default_constructible
<volatile T
>::value
, "");
22 static_assert( std::is_default_constructible
<const volatile T
>::value
, "");
24 static_assert( std::is_default_constructible_v
<T
>, "");
25 static_assert( std::is_default_constructible_v
<const T
>, "");
26 static_assert( std::is_default_constructible_v
<volatile T
>, "");
27 static_assert( std::is_default_constructible_v
<const volatile T
>, "");
32 void test_is_not_default_constructible()
34 static_assert(!std::is_default_constructible
<T
>::value
, "");
35 static_assert(!std::is_default_constructible
<const T
>::value
, "");
36 static_assert(!std::is_default_constructible
<volatile T
>::value
, "");
37 static_assert(!std::is_default_constructible
<const volatile T
>::value
, "");
39 static_assert(!std::is_default_constructible_v
<T
>, "");
40 static_assert(!std::is_default_constructible_v
<const T
>, "");
41 static_assert(!std::is_default_constructible_v
<volatile T
>, "");
42 static_assert(!std::is_default_constructible_v
<const volatile T
>, "");
50 class NoDefaultConstructor
52 NoDefaultConstructor(int) {}
71 virtual ~Abstract() = 0;
86 test_is_default_constructible
<A
>();
87 test_is_default_constructible
<Union
>();
88 test_is_default_constructible
<Empty
>();
89 test_is_default_constructible
<int>();
90 test_is_default_constructible
<double>();
91 test_is_default_constructible
<int*>();
92 test_is_default_constructible
<const int*>();
93 test_is_default_constructible
<char[3]>();
94 test_is_default_constructible
<char[5][3]>();
96 test_is_default_constructible
<NotEmpty
>();
97 test_is_default_constructible
<bit_zero
>();
99 test_is_not_default_constructible
<void>();
100 test_is_not_default_constructible
<int&>();
101 test_is_not_default_constructible
<char[]>();
102 test_is_not_default_constructible
<char[][3]>();
104 test_is_not_default_constructible
<Abstract
>();
105 test_is_not_default_constructible
<NoDefaultConstructor
>();
106 #if TEST_STD_VER >= 11
107 test_is_not_default_constructible
<B
>();
108 test_is_not_default_constructible
<int&&>();
109 test_is_not_default_constructible
<void()>();
110 test_is_not_default_constructible
<void() const> ();
111 test_is_not_default_constructible
<void() volatile> ();
112 test_is_not_default_constructible
<void() &> ();
113 test_is_not_default_constructible
<void() &&> ();