mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +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() { }
|