Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
run-make
/
pointer-auth-link-with-c
/
test.rs
blob: 795c6a45f8e610287a1ec531aae85f9af1b28149 [
file
] [
log
] [
blame
]
#[
link
(
name
=
"test"
,
kind
=
"static"
)]
extern
"C"
{
fn
foo
()
->
i32
;
}
fn
main
()
{
unsafe
{
foo
();
}
}