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