blob: 2c4e013f5c94dc78144c35a27ad1f4e72cec38f6 [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);
x.drop(); //~ ERROR explicit use of destructor method
}