2017-12-10 19:47:55 +00:00
|
|
|
error[E0508]: cannot move out of type `[Foo]`, a non-copy slice
|
2019-12-30 00:23:42 +00:00
|
|
|
--> $DIR/borrowck-move-out-of-vec-tail.rs:17:19
|
2019-04-22 07:40:08 +00:00
|
|
|
|
|
|
|
|
LL | match tail {
|
|
|
|
| ^^^^ cannot move out of here
|
|
|
|
LL |
|
|
|
|
LL | &[Foo { string: a },
|
|
|
|
| - data moved here
|
|
|
|
LL | Foo { string: b }] => {
|
|
|
|
| - ...and here
|
|
|
|
|
|
2019-11-25 20:32:57 +00:00
|
|
|
= note: move occurs because these variables have types that don't implement the `Copy` trait
|
2022-12-08 17:02:54 +00:00
|
|
|
help: consider removing the borrow
|
2019-04-22 07:40:08 +00:00
|
|
|
|
|
2022-12-08 17:02:54 +00:00
|
|
|
LL - &[Foo { string: a },
|
|
|
|
LL + [Foo { string: a },
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0508`.
|