Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-52140
/
main.rs
blob: aeac4340455bb9eeac5e75c9920e59d015cf1f19 [
file
] [
log
] [
blame
]
// 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
();
}