blob: 975446d430c2869b56619c915e73d3882b2e89fd [file] [log] [blame]
// run-pass
// ignore-wasm32-bare no libc for ffi testing
// Test a call to a function that takes/returns a u64.
#[link(name = "rust_test_helpers", kind = "static")]
extern {
pub fn rust_dbg_extern_identity_u64(v: u64) -> u64;
}
pub fn main() {
unsafe {
assert_eq!(22, rust_dbg_extern_identity_u64(22));
}
}