Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pub struct Foo;
mod bar {
struct Foo;
mod baz {
use *;
use bar::*;
fn f(_: Foo) {} //~ ERROR `Foo` is ambiguous
}
fn main() {}