2019-04-22 07:40:08 +00:00
|
|
|
error[E0505]: cannot move out of `x` because it is borrowed
|
|
|
|
--> $DIR/augmented-assignments.rs:16:5
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | let mut x = Int(1);
|
|
|
|
| ----- binding `x` declared here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x
|
2019-04-22 07:40:08 +00:00
|
|
|
| - borrow of `x` occurs here
|
2017-12-10 19:47:55 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^ move out of `x` occurs here
|
|
|
|
|
|
|
|
error[E0596]: cannot borrow `y` as mutable, as it is not declared as mutable
|
|
|
|
--> $DIR/augmented-assignments.rs:23:5
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | y
|
|
|
|
| ^ cannot borrow as mutable
|
2023-01-01 08:06:31 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be mutable
|
|
|
|
|
|
|
|
|
LL | let mut y = Int(2);
|
|
|
|
| +++
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
Some errors have detailed explanations: E0505, E0596.
|
|
|
|
For more information about an error, try `rustc --explain E0505`.
|