|
@@ -62,16 +62,16 @@ int main()
|
|
|
test_has_not_nothrow_default_constructor<void>();
|
|
|
test_has_not_nothrow_default_constructor<int&>();
|
|
|
test_has_not_nothrow_default_constructor<A>();
|
|
|
+ test_has_not_nothrow_default_constructor<char[]>();
|
|
|
+ test_has_not_nothrow_default_constructor<Abstract>();
|
|
|
|
|
|
test_has_nothrow_default_constructor<Union>();
|
|
|
- test_has_nothrow_default_constructor<Abstract>();
|
|
|
test_has_nothrow_default_constructor<Empty>();
|
|
|
test_has_nothrow_default_constructor<int>();
|
|
|
test_has_nothrow_default_constructor<double>();
|
|
|
test_has_nothrow_default_constructor<int*>();
|
|
|
test_has_nothrow_default_constructor<const int*>();
|
|
|
test_has_nothrow_default_constructor<char[3]>();
|
|
|
- test_has_nothrow_default_constructor<char[3]>();
|
|
|
test_has_nothrow_default_constructor<NotEmpty>();
|
|
|
test_has_nothrow_default_constructor<bit_zero>();
|
|
|
}
|