1 2 3 4 5 6 7 8 9 10 11 12 13
pub struct Foo; mod bar { struct Foo; mod baz { use *; use bar::*; fn f(_: Foo) {} //~ ERROR `Foo` is ambiguous } } fn main() {}