Sign in
fuchsia
/
third_party
/
rust
/
4360fd7f342943b3d25a3eb7064fd3ef7599274e
/
.
/
tests
/
ui
/
closures
/
old-closure-expression-remove-semicolon.rs
blob: edff1823d09fe5824429162732ceeb341c190a50 [
file
] [
log
] [
blame
]
//@ run-rustfix
fn
foo
()
->
i32
{
0
}
fn
main
()
{
let
_x
:
i32
=
{
//~^ ERROR mismatched types
foo
();
//~ HELP remove this semicolon to return this value
};
}