rust/tests/data/parser/inline/0063_lambda_expr.rs

7 lines
74 B
Rust
Raw Normal View History

2018-07-31 22:13:08 +02:00
fn foo() {
|| ();
|| -> i32 { 92 };
|x| x;
|x: i32,| x;
}