| 191 | struct TestStruct |
| 192 | { |
| 193 | TestStruct() { ++items; } |
| 194 | TestStruct(const TestStruct&) { ++items; } |
| 195 | TestStruct(TestStruct&&) { ++items; } |
| 196 | TestStruct& operator=(TestStruct&&) |
nothing calls this directly
no outgoing calls
no test coverage detected