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