summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/missing-let-in-binding-2.fixed
blob: d64013c8c838557d5e8d609b45fdb644a252777b (plain)
1
2
3
4
5
// run-rustfix

fn main() {
    let _v: Vec<i32> = vec![1, 2, 3]; //~ ERROR expected identifier, found `:`
}