| 2 | 2.3 + 6.5i*/ |
| 3 | mod complex { |
| 4 | pub struct Complex<Num> { |
| 5 | re: Num, |
| 6 | im: Num, |
| 7 | } |
| 8 | impl<Num> Complex<Num> { |
| 9 | pub fn from_re_im(re: Num, im: Num) -> Self { |
| 10 | Self { re, im } |
nothing calls this directly
no outgoing calls
no test coverage detected