Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-14082.rs
blob: 116002415dfa633100850c4bc916831b732e08bc [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ pretty-expanded FIXME #23616
#![
allow
(
unused_imports
,
dead_code
)]
use
foo
::
Foo
;
mod
foo
{
pub
use
m
::
Foo
;
// this should shadow d::Foo
}
mod
m
{
pub
struct
Foo
;
}
mod
d
{
pub
struct
Foo
;
}
fn
main
()
{}