Loading...
tests/safe_allocation_src/assign.copy.cpp xnu-12377.101.15 /dev/null
--- xnu/xnu-12377.101.15/tests/safe_allocation_src/assign.copy.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-//
-// Tests for
-//  safe_allocation& operator=(safe_allocation const&) = delete;
-//
-
-#include <libkern/c++/safe_allocation.h>
-#include <type_traits>
-#include <darwintest.h>
-#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<test_safe_allocation<T> >);
-	T_PASS("safe_allocation.assign.copy passed");
-}