mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
11 lines
168 B
Rust
11 lines
168 B
Rust
#[allow(unused_imports)]
|
|
|
|
mod foo {
|
|
use baz::bar;
|
|
mod bar {}
|
|
//~^ ERROR the name `bar` is defined multiple times
|
|
}
|
|
mod baz { pub mod bar {} }
|
|
|
|
fn main() {}
|