Sign in
fuchsia
/
third_party
/
rust
/
c21de289114c23993d2c3f46057bbc88c82bee82
/
.
/
tests
/
run-make
/
pointer-auth-link-with-c-lto-clang
/
test.rs
blob: 1a3be80e898baf02d661b24c764c9a30f9da9017 [
file
] [
log
] [
blame
]
#[
link
(
name
=
"test"
)]
extern
"C"
{
fn
foo
()
->
i32
;
}
fn
main
()
{
unsafe
{
foo
();
}
}