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