mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +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() { }
|