]> git.lizzy.rs Git - rust.git/blob - src/test/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.stderr
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / disallowed-deconstructing / disallowed-deconstructing-destructing-struct-match.stderr
1 error[E0509]: cannot move out of type `X`, which implements the `Drop` trait
2   --> $DIR/disallowed-deconstructing-destructing-struct-match.rs:14:11
3    |
4 LL |     match x {
5    |           ^ cannot move out of here
6 LL |
7 LL |         X { x: y } => println!("contents: {}", y)
8    |                -
9    |                |
10    |                data moved here
11    |                move occurs because `y` has type `String`, which does not implement the `Copy` trait
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0509`.