rust/tests/ui/borrowck/borrowck-move-out-of-vec-tail.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
740 B
Plaintext
Raw Normal View History

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
|
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
help: consider removing the borrow
|
LL - &[Foo { string: a },
LL + [Foo { string: a },
|
error: aborting due to 1 previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0508`.