Sign in
rust
/
rust
/
6ce8f07da0685f389bb4de75ce8abbbcce02e2eb
/
.
/
tests
/
ui
/
type
/
missing-let-in-binding.fixed
blob: 81eda1a1c0b410f70155e6957956817d96e957cb [
file
]
//@ run-rustfix
fn main
()
{
let
mut _foo
:
i32
=
1
;
let
_foo
:
i32
=
4
;
//~ ERROR expected identifier, found `:`
}