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

7 lines
79 B
Rust
Raw Normal View History

2018-07-31 15:13:08 -05:00
fn foo() {
|| ();
|| -> i32 { 92 };
|x| x;
2018-07-31 16:30:17 -05:00
move |x: i32,| x;
2018-07-31 15:13:08 -05:00
}