]> git.proxmox.com Git - rustc.git/blame - src/test/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / disallowed-deconstructing / disallowed-deconstructing-destructing-struct-match.stderr
CommitLineData
b7449926 1error[E0509]: cannot move out of type `X`, which implements the `Drop` trait
48663c56 2 --> $DIR/disallowed-deconstructing-destructing-struct-match.rs:14:11
b7449926 3 |
48663c56
XL
4LL | match x {
5 | ^ cannot move out of here
6LL |
b7449926 7LL | X { x: y } => println!("contents: {}", y)
dc9dc135
XL
8 | -
9 | |
10 | data moved here
1b1a35ee 11 | move occurs because `y` has type `String`, which does not implement the `Copy` trait
b7449926
XL
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0509`.