about summary refs log tree commit diff
path: root/tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs
blob: 1d83a3ed7ffafb903f9d6ddcce20ec5a0dde336d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//@ 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)
    }
}