(value: i32)
| 66 | fn sparse_switch(value: i32) -> i32 { |
| 67 | match value { |
| 68 | -1000 => 10, |
| 69 | 0 => 20, |
| 70 | 1000 => 30, |
| 71 | _ => 40, |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | #[inline(never)] |
| 76 | fn opaque_f128(value: f128) -> f128 { |
| 77 | value |
| 78 | } |
nothing calls this directly
no outgoing calls
no test coverage detected