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