2020-02-02 17:58:15 +01:00
|
|
|
error: cannot move out of value because it is borrowed
|
2021-05-17 21:14:06 -07:00
|
|
|
--> $DIR/default-binding-modes-both-sides-independent.rs:26:9
|
2019-11-11 11:39:52 +01:00
|
|
|
|
|
|
|
|
LL | let ref a @ b = NotCopy;
|
2023-02-27 17:39:02 +00:00
|
|
|
| ^^^^^ - value is moved into `b` here
|
|
|
|
| |
|
2023-01-17 13:48:43 +01:00
|
|
|
| value is borrowed by `a` here
|
2019-11-11 11:39:52 +01:00
|
|
|
|
2020-02-02 17:58:15 +01:00
|
|
|
error: cannot move out of value because it is borrowed
|
2021-05-17 21:14:06 -07:00
|
|
|
--> $DIR/default-binding-modes-both-sides-independent.rs:29:9
|
2019-11-11 11:39:52 +01:00
|
|
|
|
|
|
|
|
LL | let ref mut a @ b = NotCopy;
|
2023-02-27 17:39:02 +00:00
|
|
|
| ^^^^^^^^^ - value is moved into `b` here
|
|
|
|
| |
|
2023-01-17 13:48:43 +01:00
|
|
|
| value is mutably borrowed by `a` here
|
2020-01-19 02:47:01 +01:00
|
|
|
|
2020-02-02 17:58:15 +01:00
|
|
|
error: cannot move out of value because it is borrowed
|
2021-05-17 21:14:06 -07:00
|
|
|
--> $DIR/default-binding-modes-both-sides-independent.rs:34:12
|
2020-01-19 02:47:01 +01:00
|
|
|
|
|
|
|
|
LL | Ok(ref a @ b) | Err(b @ ref a) => {
|
2023-02-27 17:39:02 +00:00
|
|
|
| ^^^^^ - value is moved into `b` here
|
|
|
|
| |
|
2023-01-17 13:48:43 +01:00
|
|
|
| value is borrowed by `a` here
|
2019-11-11 11:39:52 +01:00
|
|
|
|
2020-02-02 17:58:15 +01:00
|
|
|
error: borrow of moved value
|
2021-05-17 21:14:06 -07:00
|
|
|
--> $DIR/default-binding-modes-both-sides-independent.rs:34:29
|
2019-11-11 11:39:52 +01:00
|
|
|
|
|
2020-01-19 02:47:01 +01:00
|
|
|
LL | Ok(ref a @ b) | Err(b @ ref a) => {
|
2023-02-27 17:39:02 +00:00
|
|
|
| ^ ----- value borrowed here after move
|
|
|
|
| |
|
2020-02-02 17:58:15 +01:00
|
|
|
| value moved into `b` here
|
2020-09-02 10:40:56 +03:00
|
|
|
| move occurs because `b` has type `NotCopy` 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 | Ok(ref a @ b) | Err(ref b @ ref a) => {
|
|
|
|
| +++
|
2019-11-11 11:39:52 +01:00
|
|
|
|
2020-02-02 17:58:15 +01:00
|
|
|
error: cannot move out of value because it is borrowed
|
2021-05-17 21:14:06 -07:00
|
|
|
--> $DIR/default-binding-modes-both-sides-independent.rs:42:9
|
2019-11-11 11:39:52 +01:00
|
|
|
|
|
2020-01-19 02:47:01 +01:00
|
|
|
LL | ref a @ b => {
|
2023-02-27 17:39:02 +00:00
|
|
|
| ^^^^^ - value is moved into `b` here
|
|
|
|
| |
|
2023-01-17 13:48:43 +01:00
|
|
|
| value is borrowed by `a` here
|
2020-01-19 02:47:01 +01:00
|
|
|
|
2020-11-02 00:05:55 +05:30
|
|
|
error[E0382]: borrow of moved value
|
2021-05-17 21:14:06 -07:00
|
|
|
--> $DIR/default-binding-modes-both-sides-independent.rs:29:9
|
2020-01-19 02:47:01 +01:00
|
|
|
|
|
|
|
|
LL | let ref mut a @ b = NotCopy;
|
2022-09-04 00:55:53 +02:00
|
|
|
| ^^^^^^^^^ - ------- move occurs because value has type `NotCopy`, which does not implement the `Copy` trait
|
2020-01-19 02:47:01 +01:00
|
|
|
| | |
|
2020-11-02 00:05:55 +05:30
|
|
|
| | value moved here
|
|
|
|
| value borrowed here after move
|
2022-11-02 21:22:24 -07:00
|
|
|
|
|
|
|
|
help: borrow this binding in the pattern to avoid moving the value
|
|
|
|
|
|
|
|
|
LL | let ref mut a @ ref b = NotCopy;
|
|
|
|
| +++
|
2019-11-11 11:39:52 +01:00
|
|
|
|
2020-01-19 02:47:01 +01:00
|
|
|
error: aborting due to 6 previous errors
|
2019-11-11 11:39:52 +01:00
|
|
|
|
2020-11-02 00:05:55 +05:30
|
|
|
For more information about this error, try `rustc --explain E0382`.
|