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