| 138 | |
| 139 | public: |
| 140 | explicit TestFactory7(int i) : value{i} { print_created(this, i); } |
| 141 | TestFactory7(TestFactory7 &&f) noexcept { |
| 142 | print_move_created(this); |
| 143 | // NOLINTNEXTLINE(cppcoreguidelines-prefer-member-initializer) |
nothing calls this directly
no test coverage detected