2020-11-02 00:05:55 +05:30
|
|
|
error[E0382]: use of partially moved value
|
2021-05-17 21:14:06 -07:00
|
|
|
--> $DIR/bind-by-move-no-subbindings-fun-param.rs:7:6
|
2019-11-11 11:39:52 +01:00
|
|
|
|
|
|
|
|
LL | fn f(a @ A(u): A) -> Box<u8> {
|
2022-09-04 00:55:53 +02:00
|
|
|
| ^ - value partially moved here
|
|
|
|
| |
|
2020-11-02 00:05:55 +05:30
|
|
|
| value used here after partial move
|
|
|
|
|
|
|
|
|
= note: partial move occurs because value has type `Box<u8>`, which does not implement the `Copy` trait
|
2019-11-11 11:39:52 +01:00
|
|
|
|
2020-01-19 02:47:01 +01:00
|
|
|
error: aborting due to previous error
|
2019-11-11 11:39:52 +01:00
|
|
|
|
2020-01-19 02:47:01 +01:00
|
|
|
For more information about this error, try `rustc --explain E0382`.
|