]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/pointer-auth-link-with-c/test.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / run-make-fulldeps / pointer-auth-link-with-c / test.rs
1 #[link(name = "test")]
2 extern "C" {
3     fn foo() -> i32;
4 }
5
6 fn main() {
7     unsafe {foo();}
8 }