Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
trait U { fn f(self); }
impl U for isize { fn f(self) {} }
pub fn main() { 4.f(); }