(a: i64, b: i64)
| 10 | |
| 11 | #[no_mangle] |
| 12 | pub extern "C" fn add_i64(a: i64, b: i64) -> i64 { |
| 13 | a + b |
| 14 | } |
| 15 | |
| 16 | #[no_mangle] |
| 17 | pub extern "C" fn add_u64(a: u64, b: u64) -> u64 { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…