| 25 | class ExampleMandA { |
| 26 | public: |
| 27 | ExampleMandA() { print_default_created(this); } |
| 28 | explicit ExampleMandA(int value) : value(value) { print_created(this, value); } |
| 29 | ExampleMandA(const ExampleMandA &e) : value(e.value) { print_copy_created(this); } |
| 30 | explicit ExampleMandA(std::string &&) {} |
no test coverage detected