Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-52140
/
main.rs
blob: a7c76e68d3a3fb971bb9b66b6e72820ebcfe57c0 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ aux-build:some_crate.rs
//@ compile-flags:--extern some_crate
//@ edition:2018
mod
foo
{
pub
use
some_crate
;
}
fn
main
()
{
::
some_crate
::
hello
();
foo
::
some_crate
::
hello
();
}