Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rust-2018
/
uniform-paths
/
block-scoped-shadow-nested.rs
blob: e0702cfe159234daa91da66524773b6fef26e07d [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ edition:2018
mod
my
{
pub
mod
sub
{
pub
fn
bar
()
{}
}
}
mod
sub
{
pub
fn
bar
()
{}
}
fn
foo
()
{
use
my
::
sub
;
{
use
sub
::
bar
;
// OK
}
}
fn
main
()
{}