blob: e5f1b492f275be98571a07f6bea7b9d6fe7941ce [file] [log] [blame]
// build-pass (FIXME(62277): could be 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() {}