Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![allow(dead_code)]
type Foo = fn(&u8, &u8) -> &u8; //~ ERROR missing lifetime specifier
fn bar<F: Fn(&u8, &u8) -> &u8>(f: &F) {} //~ ERROR missing lifetime specifier
fn main() {}