blob: a865812cb4a7c4708fc90d1354659f21fea9ffd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
error[E0508]: cannot move out of type `[Foo]`, a non-copy slice
--> $DIR/borrowck-move-out-of-vec-tail.rs:17:19
|
LL | match tail {
| ^^^^ cannot move out of here
LL |
LL | &[Foo { string: a },
| - data moved here
LL | Foo { string: b }] => {
| - ...and here
|
= note: move occurs because these variables have types that don't implement the `Copy` trait
help: consider removing the `&`
|
LL ~ [Foo { string: a },
LL ~ Foo { string: b }] => {
|
error: aborting due to previous error
For more information about this error, try `rustc --explain E0508`.
|