blob: cfa7179fb6b57577531672a17ddbe9e5b193fec0 [file] [log] [blame]
pub struct Foo;
mod bar {
struct Foo;
mod baz {
use *;
use bar::*;
fn f(_: Foo) {} //~ ERROR `Foo` is ambiguous
}
}
fn main() {}