mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
345 B
Rust
20 lines
345 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: ref y } => println!("contents: {}", y)
|
|
}
|
|
}
|