mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-04 16:24:57 +00:00
14 lines
168 B
Rust
14 lines
168 B
Rust
pub struct Foo;
|
|
|
|
mod bar {
|
|
struct Foo;
|
|
|
|
mod baz {
|
|
use *;
|
|
use bar::*;
|
|
fn f(_: Foo) {} //~ ERROR `Foo` is ambiguous
|
|
}
|
|
}
|
|
|
|
fn main() {}
|