Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
mod a { pub use b::foo; }
mod b { pub use a::foo; } //~ ERROR unresolved import `a::foo`
fn main() { println!("loop"); }