mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
9 lines
131 B
Rust
9 lines
131 B
Rust
fn main() {
|
|
let x = Box::new(());
|
|
let y = Box::new(());
|
|
drop(y);
|
|
let z = Box::new(());
|
|
drop(x);
|
|
drop(z);
|
|
}
|