]> git.lizzy.rs Git - rust.git/blob - src/test/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-let.stderr
normalize stderr
[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:12: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 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0509`.