Sign in
rust
/
rust
/
548b5d2406cb0a79d67e745dc3bf45e7eddbb607
/
.
/
tests
/
ui
/
type
/
missing-let-in-binding-2.fixed
blob: f4e34c739c5e70e17af74606190510637f44b58c [
file
] [
log
] [
blame
]
//@ run-rustfix
fn main
()
{
let
_v
:
Vec
<i32>
=
vec
![
1
,
2
,
3
];
//~ ERROR expected identifier, found `:`
}