rust/tests/ui/imports/ambiguous-3.rs
2025-06-25 15:40:18 +02:00

21 lines
450 B
Rust

// 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::*;
}