| 2 | 3.1622776601683795 3.1622777*/ |
| 3 | fn main() { |
| 4 | trait HasSquareRoot { // trait declaration |
| 5 | fn sq_root(self) -> Self; |
| 6 | } |
| 7 | impl HasSquareRoot for f32 { // an implementation of the trait |
| 8 | fn sq_root(self) -> Self { self.sqrt() } |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected