(a: i32, b: i32)
| 1 | #[no_mangle] |
| 2 | pub extern "C" fn add_i32(a: i32, b: i32) -> i32 { |
| 3 | a + b |
| 4 | } |
| 5 | |
| 6 | #[no_mangle] |
| 7 | pub extern "C" fn add_u32(a: u32, b: u32) -> u32 { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…