rust/tests/ui/lifetimes/issue-79187.rs
2023-01-11 09:32:08 +00:00

9 lines
180 B
Rust

fn thing(x: impl FnOnce(&u32)) {}
fn main() {
let f = |_| ();
thing(f);
//~^ ERROR mismatched types
//~^^ ERROR implementation of `FnOnce` is not general enough
}