mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
17 lines
251 B
Plaintext
17 lines
251 B
Plaintext
//@ 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
|
|
}
|