blob: 215df6e4c55a8afc674040926675f3fc0c1d4bda [file] [log] [blame]
//@ run-rustfix
fn main() {
let mut _foo: i32 = 1;
_foo: i32 = 4; //~ ERROR expected identifier, found `:`
}