Skip to content

Instantly share code, notes, and snippets.

@Ms2ger
Created January 25, 2015 11:49
Show Gist options
  • Save Ms2ger/1e20e0979962fbf201f8 to your computer and use it in GitHub Desktop.
Save Ms2ger/1e20e0979962fbf201f8 to your computer and use it in GitHub Desktop.
struct X;
impl Drop for X {
fn drop(&mut self) {
println!("dropped");
}
}
fn main() {
let x = X;
println!("1");
let _ = x;
println!("2");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment