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

// Test a function that takes/returns a u32.

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

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