2020-11-01 12:35:55 -06:00
|
|
|
error[E0382]: use of partially moved value
|
2021-05-17 23:14:06 -05:00
|
|
|
--> $DIR/bind-by-move-no-subbindings-fun-param.rs:7:6
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | fn f(a @ A(u): A) -> Box<u8> {
|
2020-11-01 12:35:55 -06:00
|
|
|
| ^^^^^^-^
|
2019-11-11 04:39:52 -06:00
|
|
|
| | |
|
2020-11-01 12:35:55 -06:00
|
|
|
| | value partially moved here
|
|
|
|
| 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 04:39:52 -06:00
|
|
|
|
2020-01-18 19:47:01 -06:00
|
|
|
error: aborting due to previous error
|
2019-11-11 04:39:52 -06:00
|
|
|
|
2020-01-18 19:47:01 -06:00
|
|
|
For more information about this error, try `rustc --explain E0382`.
|