| 2 | 2.3 + 6.5i*/ |
| 3 | mod complex { |
| 4 | pub struct Complex { |
| 5 | pub re: f64, |
| 6 | pub im: f64, |
| 7 | } |
| 8 | impl std::ops::Add for Complex { |
| 9 | type Output = Self; |
| 10 | fn add(self, rhs: Self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected