Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
run-make
/
symbol-mangling-hashed
/
default_dylib.rs
blob: 986d1c7b74d212e79bec11346827aad8a26f458c [
file
] [
log
] [
blame
]
#![
crate_type
=
"dylib"
]
extern
crate hashed_dylib
;
extern
crate hashed_rlib
;
pub
fn
ddhello
()
{
hashed_rlib
::
hrhello
();
hashed_dylib
::
hdhello
();
}