blob: 7cf73d0e93e8f247be92bb47c56e0c4677afc435 [file] [log] [blame]
#[allow(unused_imports)]
mod foo {
use crate::baz::bar;
mod bar {}
//~^ ERROR the name `bar` is defined multiple times
}
mod baz { pub mod bar {} }
fn main() {}