blob: 52b8c86802f0687f5ef9339f22f1e1c7833b92f7 [file] [log] [blame]
// 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() {}