Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
trait Foo {
fn a();
}
struct Bar;
impl Foo for Bar {
fn a() {}
fn b() {}
//~^ ERROR E0407
fn main() {