| 233 | // NOLINTNEXTLINE(readability-redundant-member-init) |
| 234 | B(B &&) noexcept : std::enable_shared_from_this<B>() { print_move_created(this); } |
| 235 | ~B() { print_destroyed(this); } |
| 236 | }; |
| 237 | |
| 238 | B value; |
nothing calls this directly
no test coverage detected