mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
17 lines
252 B
Rust
17 lines
252 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);
|
|
x.drop(); //~ ERROR explicit use of destructor method
|
|
}
|