Sign in
rust
/
rust
/
a0f398e89df9767c93c81cd58d44fdba071258a8
/
.
/
tests
/
ui
/
cross-crate
/
moves-based-on-type-cross-crate.rs
blob: 3e05717326c431531f87c39389a960110b81e51d [
file
] [
log
] [
blame
]
//@ run-pass
//@ aux-build:moves_based_on_type_lib.rs
extern
crate moves_based_on_type_lib
;
use
moves_based_on_type_lib
::
f
;
pub
fn
main
()
{
f
();
}