mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
21 lines
467 B
Rust
21 lines
467 B
Rust
//@ 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::*;
|
|
}
|