1 2 3 4 5 6 7 8 9
extern "C" { fn upstream_native_f() -> i32; } pub fn rust_dep() { unsafe { assert!(upstream_native_f() == 0); } }