Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
test
/
ui
/
parser
/
closure-return-syntax.rs
blob: 54eb791d2bce41462fbebccc048d8bb6992fe33b [
file
]
// Test that we cannot parse a closure with an explicit return type
// unless it uses braces.
fn
main
()
{
let
x
=
||
->
i32
22
;
//~^ ERROR expected one of `!`, `(`, `+`, `::`, `<`, or `{`, found `22`
}