| 6 | struct ComplexValue |
| 7 | { |
| 8 | ComplexValue(const ComplexValue& other) |
| 9 | : isMoved(other.isMoved) |
| 10 | , isDeleted(other.isDeleted) |
| 11 | { |
| 12 | EXPECT_FALSE(other.isMoved); |
| 13 | EXPECT_FALSE(other.isDeleted); |
| 14 | } |
| 15 | |
| 16 | ComplexValue& operator=(const ComplexValue& other) noexcept |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected