2020-03-04 22:49:30 -06:00
|
|
|
error: expected `{`, found `22`
|
2019-01-06 09:33:05 -06:00
|
|
|
--> $DIR/closure-return-syntax.rs:5:23
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
|
LL | let x = || -> i32 22;
|
2022-01-12 14:43:24 -06:00
|
|
|
| ^^ expected `{`
|
|
|
|
|
|
|
|
|
help: try placing this code inside a block
|
|
|
|
|
|
|
|
|
LL | let x = || -> i32 { 22 };
|
|
|
|
| + +
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|