about summary refs log tree commit diff
path: root/tests/run-make/pointer-auth-link-with-c-lto-clang/test.rs
blob: 1a3be80e898baf02d661b24c764c9a30f9da9017 (plain)
1
2
3
4
5
6
7
8
9
10
#[link(name = "test")]
extern "C" {
    fn foo() -> i32;
}

fn main() {
    unsafe {
        foo();
    }
}