In this program, the local variable `_a` is leaked: ``` rust struct Foo; impl Drop for Foo { fn drop(&mut self) { fail!(); } } fn main() { let _a = box 1; let _b = Foo; } ```