blob: 167f557a6125a03985ed722cbb2dafde4231c6b8 [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
}