| 228 | struct SharedFromThisRef { |
| 229 | struct B : std::enable_shared_from_this<B> { |
| 230 | B() { print_created(this); } |
| 231 | // NOLINTNEXTLINE(bugprone-copy-constructor-init, readability-redundant-member-init) |
| 232 | B(const B &) : std::enable_shared_from_this<B>() { print_copy_created(this); } |
| 233 | // NOLINTNEXTLINE(readability-redundant-member-init) |
nothing calls this directly
no test coverage detected