rust/tests/run-make/pointer-auth-link-with-c/test.rs
2023-03-30 07:34:55 -05:00

9 lines
94 B
Rust

#[link(name = "test")]
extern "C" {
fn foo() -> i32;
}
fn main() {
unsafe {foo();}
}