41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
316 B
Plaintext
14 lines
316 B
Plaintext
error: expected `{`, found `22`
|
|
--> $DIR/closure-return-syntax.rs:5:23
|
|
|
|
|
LL | let x = || -> i32 22;
|
|
| ^^ expected `{`
|
|
|
|
|
help: try placing this code inside a block
|
|
|
|
|
LL | let x = || -> i32 { 22 };
|
|
| + +
|
|
|
|
error: aborting due to 1 previous error
|
|
|