mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
279 B
Rust
13 lines
279 B
Rust
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() {
|
|
}
|