about summary refs log tree commit diff
path: root/tests/ui/imports/ambiguous-3.rs
blob: ff0dcc221ec05fae19a305cc151f021d14de7859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// https://github.com/rust-lang/rust/issues/47525

fn main() {
    use a::*;
    x();
    //~^ ERROR `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::*;
}