]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-struct-update-with-dtor.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / borrowck-struct-update-with-dtor.stderr
1 error[E0509]: cannot move out of type `S`, which implements the `Drop` trait
2   --> $DIR/borrowck-struct-update-with-dtor.rs:12:15
3    |
4 LL |     let _s2 = S{a: 2, ..s0};
5    |               ^^^^^^^^^^^^^
6    |               |
7    |               cannot move out of here
8    |               move occurs because `s0.b` has type `B`, which does not implement the `Copy` trait
9
10 error[E0509]: cannot move out of type `T`, which implements the `Drop` trait
11   --> $DIR/borrowck-struct-update-with-dtor.rs:17:15
12    |
13 LL |     let _s2 = T{a: 2, ..s0};
14    |               ^^^^^^^^^^^^^
15    |               |
16    |               cannot move out of here
17    |               move occurs because `s0.mv` has type `Box<isize>`, which does not implement the `Copy` trait
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0509`.