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