summaryrefslogtreecommitdiffstats
path: root/src/test/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs
blob: 9c996a93b9532ff400dc3b3a56a5b11f2a116f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
    }
}