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