1 2 3 4 5 6 7 8 9
mod foo { pub struct Bar; } fn main() { { struct Bar; use foo::Bar; //~^ ERROR the name `Bar` is defined multiple times } }