7 #include <throwing/unique_ptr.hpp> 11 ArrayDeleter() : called(
false) {}
12 void operator()(
int *p) {
22 TEST_CASE(
"unique_ptr to array reset to convertible",
23 "[unique_ptr][array][reset][conv.qual]") {
24 const int *p1 =
new int[10];
25 throwing::unique_ptr<
const int[], ArrayDeleter> uptr(p1);
27 REQUIRE(!uptr.get_deleter().called);
28 int *p2 =
new int[10];
31 REQUIRE(uptr.get_deleter().called);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")