| 25 | |
| 26 | struct IntStruct { |
| 27 | explicit IntStruct(int v) : value(v) {}; |
| 28 | ~IntStruct() { value = -value; } |
| 29 | IntStruct(const IntStruct &) = default; |
| 30 | IntStruct &operator=(const IntStruct &) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected