Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
run-make
/
mixing-deps
/
prog.rs
blob: 1e52ee16982dd7f6aadbb18e21cd2ecf777659eb [
file
] [
log
] [
blame
]
extern
crate both
;
extern
crate dylib
;
use
std
::
mem
;
fn
main
()
{
assert_eq
!(
unsafe
{
mem
::
transmute
::<&
isize
,
usize
>(&
both
::
foo
)
},
dylib
::
addr
());
}