aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0063_lambda_expr.rs
blob: 3c30a9209e9bf6b6b24cf4d167e9bad965898117 (plain)
1
2
3
4
5
6
fn foo() {
    || ();
    || -> i32 { 92 };
    |x| x;
    |x: i32,| x;
}