summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/ambiguous-3.rs
blob: 61a5b6b83fbbf59cccb5817ca1623d98c76308c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// check-pass
// https://github.com/rust-lang/rust/issues/47525

fn main() {
    use a::*;
    x();
    //~^ WARNING `x` is ambiguous
    //~| WARNING this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
}

mod a {
    mod b {
        pub fn x() { println!(module_path!()); }
    }
    mod c {
        pub fn x() { println!(module_path!()); }
    }

    pub use self::b::*;
    pub use self::c::*;
}