]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-move-out-of-vec-tail.nll.stderr
Rollup merge of #53413 - eddyb:featured-in-the-latest-edition, r=varkor
[rust.git] / src / test / ui / borrowck / borrowck-move-out-of-vec-tail.nll.stderr
1 error[E0508]: cannot move out of type `[Foo]`, a non-copy slice
2   --> $DIR/borrowck-move-out-of-vec-tail.rs:29:19
3    |
4 LL |             match tail {
5    |                   ^^^^ cannot move out of here
6 LL |                 &[Foo { string: a },
7    |                                 - data moved here
8 ...
9 LL |                   Foo { string: b }] => {
10    |                                 - ...and here
11    |
12 note: move occurs because these variables have types that don't implement the `Copy` trait
13   --> $DIR/borrowck-move-out-of-vec-tail.rs:30:33
14    |
15 LL |                 &[Foo { string: a },
16    |                                 ^
17 ...
18 LL |                   Foo { string: b }] => {
19    |                                 ^
20 help: consider removing the `&`
21    |
22 LL |                 [Foo { string: a },
23 LL |                 //~^ ERROR cannot move out of type `[Foo]`
24 LL |                 //~| cannot move out
25 LL |                 //~| to prevent move
26 LL |                   Foo { string: b }] => {
27    |
28
29 error: aborting due to previous error
30
31 For more information about this error, try `rustc --explain E0508`.