]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-move-out-of-vec-tail.stderr
Sync rust-lang/portable-simd@5f49d4c8435a25d804b2f375e949cb25479f5be9
[rust.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: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 `&`
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`.