Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
pointer-auth-link-with-c
/
test.rs
blob: 1a3be80e898baf02d661b24c764c9a30f9da9017 [
file
] [
log
] [
blame
] [
edit
]
#[
link
(
name
=
"test"
)]
extern
"C"
{
fn
foo
()
->
i32
;
}
fn
main
()
{
unsafe
{
foo
();
}
}