mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
340 B
Rust
20 lines
340 B
Rust
// run-rustfix
|
|
struct X {
|
|
x: String,
|
|
}
|
|
|
|
impl Drop for X {
|
|
fn drop(&mut self) {
|
|
println!("value: {}", self.x);
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let x = X { x: "hello".to_string() };
|
|
|
|
match x {
|
|
//~^ ERROR cannot move out of type `X`, which implements the `Drop` trait
|
|
X { x: y } => println!("contents: {}", y)
|
|
}
|
|
}
|