Skip to content

Instantly share code, notes, and snippets.

@jpastuszek
Forked from anonymous/playground.rs
Created June 12, 2016 21:12
Show Gist options
  • Save jpastuszek/c69590018412f6c6892ad0587261bc38 to your computer and use it in GitHub Desktop.
Save jpastuszek/c69590018412f6c6892ad0587261bc38 to your computer and use it in GitHub Desktop.
Shared via Rust Playground
struct A;
impl Drop for A {
fn drop(&mut self) {
println!("dropping A");
}
}
fn main() {
let _ = A;
panic!("how did this happen!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment