7 #include <throwing/shared_ptr.hpp> 9 TEST_CASE(
"hash operator of shared_ptr",
"[shared_ptr][hash]") {
10 auto p = std::make_shared<
int>(42);
11 throwing::shared_ptr<
int> tp = p;
12 REQUIRE(std::hash<throwing::shared_ptr<
int>>()(tp) ==
13 std::hash<std::shared_ptr<
int>>()(p));
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")