2020-02-02 17:58:15 +01:00
|
|
|
error: borrow of moved value
|
2021-05-17 21:14:06 -07:00
|
|
|
--> $DIR/borrowck-pat-by-move-and-ref-inverse-promotion.rs:6:9
|
2020-01-19 02:47:01 +01:00
|
|
|
|
|
|
|
|
LL | let a @ ref b = U;
|
|
|
|
| -^^^-----
|
|
|
|
| | |
|
|
|
|
| | value borrowed here after move
|
2020-02-02 17:58:15 +01:00
|
|
|
| value moved into `a` here
|
2020-09-02 10:40:56 +03:00
|
|
|
| move occurs because `a` has type `U` which does not implement the `Copy` trait
|
2022-11-15 09:01:20 -08:00
|
|
|
|
|
|
|
|
help: borrow this binding in the pattern to avoid moving the value
|
|
|
|
|
|
|
|
|
LL | let ref a @ ref b = U;
|
|
|
|
| +++
|
2020-01-19 02:47:01 +01:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|