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

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