rust/tests/ui/parser/recover-fn-trait-from-fn-kw.rs
2023-01-11 09:32:08 +00:00

13 lines
286 B
Rust

fn foo(_: impl fn() -> i32) {}
//~^ ERROR expected identifier, found keyword `fn`
fn foo2<T: fn(i32)>(_: T) {}
//~^ ERROR expected identifier, found keyword `fn`
fn main() {
foo(|| ());
//~^ mismatched types
foo2(|_: ()| {});
//~^ type mismatch in closure arguments
}