We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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; }