mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +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() { }
|