rust/src/test/ui/pattern/bindings-after-at/bind-by-move-no-subbindings-fun-param.stderr

14 lines
439 B
Plaintext
Raw Normal View History

error[E0382]: use of moved value
--> $DIR/bind-by-move-no-subbindings-fun-param.rs:10:12
|
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
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.