// // Tests for // safe_allocation& operator=(safe_allocation const&) = delete; // #include #include #include #include "test_utils.h" struct T { }; T_DECL(assign_copy, "safe_allocation.assign.copy", T_META_TAG_VM_PREFERRED) { static_assert(!std::is_copy_assignable_v >); T_PASS("safe_allocation.assign.copy passed"); }