rust/src/test/ui/parser/issue-22647.rs
2019-08-24 21:53:55 +02:00

16 lines
272 B
Rust

fn main() {
let caller<F> = |f: F| //~ ERROR expected one of `:`, `;`, `=`, `@`, or `|`, found `<`
where F: Fn() -> i32
{
let x = f();
println!("Y {}",x);
return x;
};
caller(bar_handler);
}
fn bar_handler() -> i32 {
5
}