blob: a8829bd4e49059f5e4637c04db22948a0fa741f8 (
plain)
1
2
3
4
5
6
7
8
|
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
}
|