2019-11-11 04:39:52 -06:00
|
|
|
error[E0382]: use of moved value
|
2020-01-18 19:47:01 -06:00
|
|
|
--> $DIR/bind-by-move-no-subbindings-fun-param.rs:10:12
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | fn f(a @ A(u): A) -> Box<u8> {
|
|
|
|
| ------^-
|
|
|
|
| | |
|
|
|
|
| | value used here after move
|
|
|
|
| value moved here
|
|
|
|
| move occurs because value has type `A`, which does not implement the `Copy` trait
|
|
|
|
|
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`.
|