| 18 | class ExampleVirt { |
| 19 | public: |
| 20 | explicit ExampleVirt(int state) : state(state) { print_created(this, state); } |
| 21 | ExampleVirt(const ExampleVirt &e) : state(e.state) { print_copy_created(this); } |
| 22 | ExampleVirt(ExampleVirt &&e) noexcept : state(e.state) { |
| 23 | print_move_created(this); |
no test coverage detected