1
Fork 0
rust/src/test/ui/liveness/liveness-assign/liveness-assign-imm-local-with-drop.rs

13 lines
355 B
Rust
Raw Normal View History

fn test() {
let b = Box::new(1); //~ NOTE first assignment
//~| HELP make this binding mutable
//~| SUGGESTION mut b
drop(b);
b = Box::new(2); //~ ERROR cannot assign twice to immutable variable `b`
//~| NOTE cannot assign twice to immutable
drop(b);
}
fn main() {
}