]> git.proxmox.com Git - rustc.git/blob - src/test/ui/borrowck/borrowck-move-out-of-vec-tail.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / 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:19: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 `&`
14 |
15 LL | [Foo { string: a },
16 LL | Foo { string: b }] => {
17 |
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0508`.