summaryrefslogtreecommitdiffstats
path: root/src/test/ui/blind/blind-item-block-item-shadow.rs
blob: d90ef77e2990a10f47efd9322fdaae0d20ff20a7 (plain)
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
    }
}