DEBSOURCES
Skip Quicknav
sources / rustc / 1.89.0%2Bdfsg1-1 / tests / run-make / pointer-auth-link-with-c / test.rs
12345678910
#[link(name = "test", kind = "static")] extern "C" { fn foo() -> i32; } fn main() { unsafe { foo(); } }