| 91 | |
| 92 | public: |
| 93 | explicit TestFactory6(int i) : value{i} { print_created(this, i); } |
| 94 | TestFactory6(TestFactory6 &&f) noexcept { |
| 95 | print_move_created(this); |
| 96 | // NOLINTNEXTLINE(cppcoreguidelines-prefer-member-initializer) |
no test coverage detected