Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pub trait A {
fn frob(&self);
}
impl A for isize { fn frob(&self) {} }
pub fn frob<T:A>(t: T) {
t.frob();