Sign in
android
/
toolchain
/
rustc
/
2f380c1f7952c665764c26a26842375bb02f5296
/
.
/
src
/
test
/
run-make
/
rlib-format-packed-bundled-libs
/
rust_dep_local.rs
blob: 8280c7d6c5156e68ffa6ca3d6ec4423461a09724 [
file
]
#[
link
(
name
=
"native_dep_1"
,
kind
=
"static"
)]
extern
"C"
{
fn
native_f1
()
->
i32
;
}
extern
crate rust_dep_up
;
pub
fn
rust_dep_local
()
{
unsafe
{
assert
!(
native_f1
()
==
1
);
}
rust_dep_up
::
rust_dep_up
();
}