about summary refs log tree commit diff
path: root/tests/ui/type/missing-let-in-binding-2.fixed
blob: f4e34c739c5e70e17af74606190510637f44b58c (plain)
1
2
3
4
5
//@ run-rustfix

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