Environment is Windows 7 with `cmd.exe`. Rust and cargo are stable 1.42, nightly does the same. Here’s a screenshot:  ```rust struct S; fn main() { let x = S; drop(x); drop(x); } ```