mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-04 09:13:49 +00:00
13 lines
366 B
Rust
13 lines
366 B
Rust
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() {
|
|
}
|