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