mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
19 lines
243 B
Rust
19 lines
243 B
Rust
// run-rustfix
|
|
struct Foo {
|
|
x: i32,
|
|
}
|
|
|
|
impl Drop for Foo {
|
|
fn drop(&mut self) {
|
|
println!("kaboom");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let mut x = Foo { x: -7 };
|
|
x.x = 0;
|
|
println!("{}", x.x);
|
|
x.drop();
|
|
//~^ ERROR E0040
|
|
}
|