]> git.lizzy.rs Git - rust.git/blob - src/test/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.stderr
Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen
[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`.