blob: c9b16e43910e8e9f6215acc0ed4ed4b3ecca2c64 [file] [log] [blame]
fn test() {
let b = Box::new(1); //~ NOTE first assignment
//~| HELP consider making 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() {
}