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