]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/borrowck-struct-update-with-dtor.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / borrowck / borrowck-struct-update-with-dtor.stderr
CommitLineData
b7449926 1error[E0509]: cannot move out of type `S`, which implements the `Drop` trait
48663c56 2 --> $DIR/borrowck-struct-update-with-dtor.rs:12:15
b7449926
XL
3 |
4LL | let _s2 = S{a: 2, ..s0};
dc9dc135
XL
5 | ^^^^^^^^^^^^^
6 | |
7 | cannot move out of here
8 | move occurs because `s0.b` has type `B`, which does not implement the `Copy` trait
b7449926
XL
9
10error[E0509]: cannot move out of type `T`, which implements the `Drop` trait
48663c56 11 --> $DIR/borrowck-struct-update-with-dtor.rs:17:15
b7449926
XL
12 |
13LL | let _s2 = T{a: 2, ..s0};
dc9dc135
XL
14 | ^^^^^^^^^^^^^
15 | |
16 | cannot move out of here
1b1a35ee 17 | move occurs because `s0.mv` has type `Box<isize>`, which does not implement the `Copy` trait
b7449926
XL
18
19error: aborting due to 2 previous errors
20
21For more information about this error, try `rustc --explain E0509`.