| 19 | fn exp(self) -> Self { self.exp() } |
| 20 | } |
| 21 | trait HasMultiply<Rhs> { |
| 22 | fn multiply(self, rhs: Rhs) -> Self; |
| 23 | } |
| 24 | impl<Rhs> HasMultiply<Rhs> for f64 where Rhs: Into<Self> { |
| 25 | fn multiply(self, rhs: Rhs) -> Self { self * rhs.into() } |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected