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