]> git.lizzy.rs Git - rust.git/blob - src/test/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-let.stderr
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[rust.git] / src / test / ui / disallowed-deconstructing / disallowed-deconstructing-destructing-struct-let.stderr
1 error[E0509]: cannot move out of type `X`, which implements the `Drop` trait
2   --> $DIR/disallowed-deconstructing-destructing-struct-let.rs:13:22
3    |
4 LL |     let X { x: y } = x;
5    |                -     ^ cannot move out of here
6    |                |
7    |                data moved here
8    |                move occurs because `y` has type `String`, which does not implement the `Copy` trait
9    |
10 help: consider borrowing the pattern binding
11    |
12 LL |     let X { x: ref y } = x;
13    |                +++
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0509`.