blob: b7050d69306d0dbdf0fdbda81a4950bdba0c84c5 [file] [log] [blame] [edit]
fn test() {
let b = Box::new(1); //~ NOTE first assignment
//~| HELP consider making this binding mutable
//~| SUGGESTION mut
drop(b);
b = Box::new(2); //~ ERROR cannot assign twice to immutable variable `b`
//~| NOTE cannot assign twice to immutable
drop(b);
}
fn main() {
}