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