Sign in
◑
Theme
rust
/
rust
/
08ec41ea3dfd2d30a5747a084d0dbc79fba227d6
/
.
/
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 `:`
}