rust/tests/run-make/link-path-order/main.rs
2024-05-20 11:13:10 -04:00

15 lines
238 B
Rust

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);
}
}