summaryrefslogtreecommitdiffstats
path: root/tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.fixed
blob: c8a451efeb28ecdc7775cdc640e8924e209eabf0 (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: ref y } => println!("contents: {}", y)
    }
}