Sign in
fuchsia
/
third_party
/
rust
/
e4710fe2214ba85fd9a3514c76c7722253a3a275
/
.
/
src
/
test
/
ui
/
closures
/
old-closure-expression-remove-semicolon.fixed
blob: 5629d4b6e6e5f65e8ee8d10b651baa7f70389d49 [
file
]
// run-rustfix
fn foo
()
->
i32
{
0
}
fn main
()
{
let
_x
:
i32
=
{
//~^ ERROR mismatched types
foo
()
//~ HELP consider removing this semicolon
};
}