blob: fd6b4bcdf84c0b8464d04e898c3ac4a3da7f6c1c [file] [log] [blame] [edit]
fn test() {
let v: isize;
//~^ HELP consider making this binding mutable
//~| SUGGESTION mut
v = 2; //~ NOTE first assignment
v += 1; //~ ERROR cannot assign twice to immutable variable `v`
//~| NOTE cannot assign twice to immutable
v.clone();
}
fn main() {
}