2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2021-01-18 00:48:52 +00:00
|
|
|
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
|
|
|
|
}
|