about summary refs log tree commit diff
path: root/tests/run-make/link-path-order/main.rs
blob: 20a517dcda9b2058c1aa3c71e718846bd0218a03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::ffi::c_int;

#[link(name = "foo", kind = "static")]
extern "C" {
    fn should_return_one() -> c_int;
}

fn main() {
    let result = unsafe { should_return_one() };

    if result != 1 {
        std::process::exit(255);
    }
}