mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
27 lines
422 B
Rust
27 lines
422 B
Rust
//@ check-pass
|
|
// https://github.com/rust-lang/rust/issues/98467
|
|
|
|
mod a {
|
|
pub fn foo() {}
|
|
}
|
|
|
|
mod b {
|
|
pub fn foo() {}
|
|
}
|
|
|
|
mod f {
|
|
pub use a::*;
|
|
pub use b::*;
|
|
}
|
|
|
|
mod g {
|
|
pub use a::*;
|
|
pub use f::*;
|
|
}
|
|
|
|
fn main() {
|
|
g::foo();
|
|
//~^ WARNING `foo` 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!
|
|
}
|