2020-11-01 12:35:55 -06:00
|
|
|
error[E0382]: use of partially moved value
|
2021-05-17 23:14:06 -05:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:12:9
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let a @ NC(b, c @ NC(d, e)) = NC(C, NC(C, C));
|
2022-09-03 17:55:53 -05:00
|
|
|
| ^ - value partially moved here
|
|
|
|
| |
|
2020-11-01 12:35:55 -06:00
|
|
|
| value used here after partial move
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
= note: partial move occurs because value has type `NC<C, C>`, which does not implement the `Copy` trait
|
2022-11-02 23:22:24 -05:00
|
|
|
help: borrow this binding in the pattern to avoid moving the value
|
|
|
|
|
|
2022-11-15 11:01:20 -06:00
|
|
|
LL | let ref a @ NC(b, ref c @ NC(d, e)) = NC(C, NC(C, C));
|
|
|
|
| +++ +++
|
2019-11-11 04:39:52 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 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`.
|