rust/tests/ui/augmented-assignments.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
716 B
Plaintext
Raw Normal View History

error[E0505]: cannot move out of `x` because it is borrowed
--> $DIR/augmented-assignments.rs:16:5
|
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
| - borrow of `x` occurs here
...
2019-03-09 12:03:44 +00:00
LL | x;
| ^ 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
|
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);
| +++
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0505, E0596.
For more information about an error, try `rustc --explain E0505`.