Sign in
qemu
/
meson
/
refs/heads/debbugfix
/
.
/
test cases
/
rust
/
2 sharedlib
/
prog.rs
blob: b34c34cb9696d77ce868294621d6bf78f00bbdc5 [
file
]
extern
crate stuff
;
extern
"C"
{
fn
not_so_rusty
()
->
i64
;
}
fn
main
()
{
println
!(
"printing: {} {}"
,
stuff
::
explore
(),
unsafe
{
not_so_rusty
()
});
}