blob: 91a4ca608da4ea1396d25ffed856a4a95aac6afb [file] [log] [blame]
// 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
}