rust/tests/data/parser/inline/0063_lambda_expr.rs
2018-07-31 23:13:08 +03:00

7 lines
74 B
Rust

fn foo() {
|| ();
|| -> i32 { 92 };
|x| x;
|x: i32,| x;
}