| 2 | -2.3 + 0i, -2.1 - 5.2i, -2.2 + 5.2i*/ |
| 3 | fn main() { |
| 4 | struct Complex { |
| 5 | re: f64, |
| 6 | im: f64, |
| 7 | } |
| 8 | impl std::fmt::Display for Complex { |
| 9 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 10 | write!( |
nothing calls this directly
no outgoing calls
no test coverage detected