Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn foo<T: 'static>() { }
fn boo<'a>() {
return;
let x = foo::<&'a u32>();
//~^ ERROR
}
fn main() {}