mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
417 B
Plaintext
13 lines
417 B
Plaintext
error[E0508]: cannot move out of type `[u8]`, a non-copy slice
|
|
--> $DIR/unsized-exprs2.rs:22:5
|
|
|
|
|
LL | udrop::<[u8]>(foo()[..]);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
| |
|
|
| cannot move out of here
|
|
| move occurs because value has type `[u8]`, which does not implement the `Copy` trait
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0508`.
|