]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-move-out-of-vec-tail.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / borrowck-move-out-of-vec-tail.stderr
1 error[E0508]: cannot move out of type `[Foo]`, a non-copy slice
2   --> $DIR/borrowck-move-out-of-vec-tail.rs:17:19
3    |
4 LL |             match tail {
5    |                   ^^^^ cannot move out of here
6 LL |
7 LL |                 &[Foo { string: a },
8    |                                 - data moved here
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 help: consider removing the borrow
14    |
15 LL -                 &[Foo { string: a },
16 LL +                 [Foo { string: a },
17    |
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0508`.