about summary refs log tree commit diff
path: root/tests/ui/abi/extern/extern-pass-u64.rs
blob: f1cd6bf59c2ecc0c5e9ad55b34551f42f5736492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ run-pass

// Test a call to a function that takes/returns a u64.

#[link(name = "rust_test_helpers", kind = "static")]
extern "C" {
    pub fn rust_dbg_extern_identity_u64(v: u64) -> u64;
}

pub fn main() {
    unsafe {
        assert_eq!(22, rust_dbg_extern_identity_u64(22));
    }
}