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