blob: 08911c5bde781f2601e946698c16433b14de9569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
fn test() {
let v: isize;
//~^ HELP consider making this binding mutable
//~| SUGGESTION mut v
loop {
v = 1; //~ ERROR cannot assign twice to immutable variable `v`
//~| NOTE cannot assign twice to immutable variable
}
}
fn main() {
}
|