7 #include <throwing/unique_ptr.hpp> 14 int dummy() {
return dummy_a; }
18 DeleterA() : called(
false) {}
19 void operator()(A *p) {
27 TEST_CASE(
"move assignment from std::unique_ptr to array of convertible " 28 "type to std::unique_ptr",
29 "[unique_ptr][assignment][array][conv.qual]") {
30 const A *p1 =
new A[10];
31 std::unique_ptr<
const A[]> t_ptr1(p1);
33 std::unique_ptr<A[]> t_ptr2(p2);
34 t_ptr1 = std::move(t_ptr2);
35 REQUIRE(t_ptr1.get() == p2);
39 TEST_CASE(
"move assignment from throwing::unique_ptr to array of convertible " 40 "type to throwing::unique_ptr",
41 "[unique_ptr][assignment][array][conv.qual]") {
42 const A *p1 =
new A[10];
43 throwing::unique_ptr<
const A[]> t_ptr1(p1);
45 throwing::unique_ptr<A[]> t_ptr2(p2);
46 t_ptr1 = std::move(t_ptr2);
47 REQUIRE(t_ptr1.get() == p2);
51 TEST_CASE(
"move assignment from std::unique_ptr to array of convertible " 52 "type to throwing::unique_ptr",
53 "[unique_ptr][assignment][array][conv.qual]") {
54 const A *p1 =
new A[10];
55 throwing::unique_ptr<
const A[]> t_ptr1(p1);
57 std::unique_ptr<A[]> t_ptr2(p2);
58 t_ptr1 = std::move(t_ptr2);
59 REQUIRE(t_ptr1.get() == p2);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")