1 2 3 4 5 6 7 8
fn main() { let x = Box::new(()); let y = Box::new(()); drop(y); let z = Box::new(()); drop(x); drop(z); }