]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unsized-locals/unsized-exprs2.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / unsized-locals / unsized-exprs2.stderr
1 error[E0508]: cannot move out of type `[u8]`, a non-copy slice
2   --> $DIR/unsized-exprs2.rs:22:19
3    |
4 LL |     udrop::<[u8]>(foo()[..]);
5    |                   ^^^^^^^^^
6    |                   |
7    |                   cannot move out of here
8    |                   move occurs because value has type `[u8]`, which does not implement the `Copy` trait
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0508`.