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