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