// // Tests for // safe_allocation(safe_allocation const&) = delete; // #include #include #include #include "test_utils.h" struct T { int i; }; T_DECL(ctor_copy, "safe_allocation.ctor.copy") { static_assert(!std::is_copy_constructible_v >); T_PASS("safe_allocation.ctor.copy passed"); }