Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
issue-8640.rs
blob: 51a02a32ec8e521238d06acfc196fa1e9678e922 [
file
] [
log
] [
blame
] [
edit
]
#[
allow
(
unused_imports
)]
mod
foo
{
use
baz
::
bar
;
mod
bar
{}
//~^ ERROR the name `bar` is defined multiple times
}
mod
baz
{
pub
mod
bar
{}
}
fn
main
()
{}