Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
symbol-mangling-hashed
/
b_dylib.rs
blob: 3252c9c75c2a46522772a0c93a7b574482308656 [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"dylib"
]
extern
crate a_dylib
;
extern
crate a_rlib
;
pub
fn
hello
()
{
a_rlib
::
hello
();
a_dylib
::
hello
();
}