rust/tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs
2023-01-11 09:32:08 +00:00

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)
}
}