DEBSOURCES
Skip Quicknav
sources / rustc / 1.89.0%2Bdfsg1-1 / tests / ui / blind / blind-item-block-item-shadow.rs
123456789
mod foo { pub struct Bar; } fn main() { { struct Bar; use foo::Bar; //~^ ERROR the name `Bar` is defined multiple times } }