blob: 262dde54c7f6a5ac7cb8a8a4760dad5bd0cefb41 [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
}