2019-04-22 08:40:08 +01:00
|
|
|
error[E0508]: cannot move out of type `[u8]`, a non-copy slice
|
2020-04-17 09:27:35 -03:00
|
|
|
--> $DIR/unsized-exprs2.rs:22:5
|
2018-10-24 22:10:17 +09:00
|
|
|
|
|
|
|
|
LL | udrop::<[u8]>(foo()[..]);
|
2020-04-17 09:27:35 -03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot move out of here
|
|
|
|
| move occurs because value has type `[u8]`, which does not implement the `Copy` trait
|
2018-10-24 22:10:17 +09:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
For more information about this error, try `rustc --explain E0508`.
|