1 2 3 4 5 6 7 8 9 10
#[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() {}