Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
parser
/
closure-return-syntax.stderr
blob: 3d16a2067ccae7f882f8549df17a85cace19017f [
file
]
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 previous error