Sign in
rust
/
rust
/
e790320ac4e55ff1ec4c2bb5faeb52eff5d96a32
/
.
/
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 `:`
}