| 92 | class CopyOnlyInt { |
| 93 | public: |
| 94 | CopyOnlyInt() { print_default_created(this); } |
| 95 | explicit CopyOnlyInt(int v) : value{v} { print_created(this, value); } |
| 96 | CopyOnlyInt(const CopyOnlyInt &c) { |
| 97 | print_copy_created(this, c.value); |
nothing calls this directly
no test coverage detected