| 36 | } |
| 37 | |
| 38 | type fakeFloat struct { |
| 39 | f32 float32 |
| 40 | f64 float64 |
| 41 | } |
| 42 | |
| 43 | func (f fakeFloat) F32() float32 { return f.f32 } |
| 44 | func (f fakeFloat) F64() float64 { return f.f64 } |
nothing calls this directly
no outgoing calls
no test coverage detected