Sign in
◑
Theme
rust
/
rust
/
ac3bada2824c8a32fee784e13df8a30ac68fab43
/
.
/
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 `:`
}