Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![allow(dead_code)]
trait C {}
impl dyn C { fn f() {} } //~ ERROR duplicate
impl dyn C { fn f() {} }
fn main() { }