mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
341 B
Rust
13 lines
341 B
Rust
fn test() {
|
|
let v: isize = 1; //~ NOTE first assignment
|
|
//~| HELP consider making this binding mutable
|
|
//~| SUGGESTION mut v
|
|
v.clone();
|
|
v = 2; //~ ERROR cannot assign twice to immutable variable `v`
|
|
//~| NOTE cannot assign twice to immutable
|
|
v.clone();
|
|
}
|
|
|
|
fn main() {
|
|
}
|