mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
250 B
Rust
17 lines
250 B
Rust
// 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
|
|
}
|