]> git.lizzy.rs Git - rust.git/blob - src/test/ui/moves/move-out-of-slice-1.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / moves / move-out-of-slice-1.stderr
1 error[E0508]: cannot move out of type `[A]`, a non-copy slice
2   --> $DIR/move-out-of-slice-1.rs:7:11
3    |
4 LL |     match a {
5    |           ^ cannot move out of here
6 LL |         box [a] => {},
7    |              -
8    |              |
9    |              data moved here
10    |              move occurs because `a` has type `A`, which does not implement the `Copy` trait
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0508`.