We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In this program, the local variable _a is leaked:
_a
struct Foo; impl Drop for Foo { fn drop(&mut self) { fail!(); } } fn main() { let _a = box 1; let _b = Foo; }