mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-14 21:29:37 +00:00
15 lines
179 B
Rust
15 lines
179 B
Rust
use foo::*;
|
|
|
|
mod foo {
|
|
pub mod bar {
|
|
pub mod bar {
|
|
pub mod bar {}
|
|
}
|
|
}
|
|
}
|
|
|
|
use bar::bar; //~ ERROR `bar` is ambiguous
|
|
use bar::*;
|
|
|
|
fn main() { }
|