blob: a8829bd4e49059f5e4637c04db22948a0fa741f8 [file] [log] [blame]
fn thing(x: impl FnOnce(&u32)) {}
fn main() {
let f = |_| ();
thing(f);
//~^ ERROR implementation of `FnOnce` is not general enough
//~| ERROR implementation of `FnOnce` is not general enough
}