rust/tests/ui/liveness/liveness-assign/liveness-assign-imm-local-with-init.rs
2023-01-11 09:32:08 +00:00

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() {
}