mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-01 23:31:32 +00:00
14 lines
328 B
Rust
14 lines
328 B
Rust
fn test() {
|
|
let v: isize;
|
|
//~^ HELP consider making this binding mutable
|
|
//~| SUGGESTION mut v
|
|
v = 1; //~ NOTE first assignment
|
|
println!("v={}", v);
|
|
v = 2; //~ ERROR cannot assign twice to immutable variable
|
|
//~| NOTE cannot assign twice to immutable
|
|
println!("v={}", v);
|
|
}
|
|
|
|
fn main() {
|
|
}
|