2018-08-08 07:28:26 -05:00
|
|
|
error[E0509]: cannot move out of type `S`, which implements the `Drop` trait
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/borrowck-struct-update-with-dtor.rs:12:15
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let _s2 = S{a: 2, ..s0};
|
2019-05-05 06:02:32 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot move out of here
|
|
|
|
| move occurs because `s0.b` has type `B`, which does not implement the `Copy` trait
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0509]: cannot move out of type `T`, which implements the `Drop` trait
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/borrowck-struct-update-with-dtor.rs:17:15
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let _s2 = T{a: 2, ..s0};
|
2019-05-05 06:02:32 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot move out of here
|
2020-09-02 02:40:56 -05:00
|
|
|
| move occurs because `s0.mv` has type `Box<isize>`, which does not implement the `Copy` trait
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0509`.
|