Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn thing(x: impl FnOnce(&u32)) {}
fn main() {
let f = |_| ();
thing(f);
//~^ ERROR mismatched types
//~^^ ERROR implementation of `FnOnce` is not general enough
}