Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
lto-no-link-whole-rlib
/
lib2.rs
blob: 2dec2a2718e83a197c6656c1aed89f752ee1dfe3 [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"rlib"
]
extern
crate lib1
;
#[
link
(
name
=
"bar"
,
kind
=
"static"
)]
extern
"C"
{
fn
foo
()
->
i32
;
}
pub
fn
foo2
()
->
i32
{
unsafe
{
foo
()
}
}