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

7 lines
79 B
Rust
Raw Normal View History

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