| 74 | } |
| 75 | |
| 76 | ~ComplexVal() noexcept |
| 77 | { |
| 78 | EXPECT_NE(status, Status::Destructed); |
| 79 | status = Status::Destructed; |
| 80 | dtorCallCount++; |
| 81 | } |
| 82 | |
| 83 | ComplexVal& operator=(ComplexVal&& other) noexcept |
| 84 | { |
nothing calls this directly
no outgoing calls
no test coverage detected