mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
237 B
Rust
21 lines
237 B
Rust
// 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() {}
|