blob: 4c4142c79811ddd061a4acdef6f8f7ebd56df3b8 [file] [log] [blame] [edit]
//@ run-rustfix
struct Foo {
x: isize
}
impl Drop for Foo {
fn drop(&mut self) {
println!("kaboom");
}
}
fn main() {
let x = Foo { x: 3 };
println!("{}", x.x);
drop(x); //~ ERROR explicit use of destructor method
}