Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
use a::f;
use b::f; //~ ERROR: unresolved import `b::f` [E0432]
//~^ no `f` in `b`
mod a { pub fn f() {} }
mod b { }
fn main() {
f();
}