summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/issue-8640.rs
blob: 51a02a32ec8e521238d06acfc196fa1e9678e922 (plain)
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() {}