Sign in
android
/
toolchain
/
rustc
/
5655985713ea96a29da08e29b9342d0333e18019
/
.
/
tests
/
ui
/
issues
/
issue-14082.rs
blob: 16556e1d26003cebeb04932ea768729820ebbe35 [
file
] [
log
] [
blame
]
//@ check-pass
#![
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
()
{}