]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/augmented-assignments.stderr
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / augmented-assignments.stderr
index e429bf2a594fe42a0a00bd458ef6310ba1416c80..ce555da8975a7af622eb377ec85f114da441d0b6 100644 (file)
@@ -1,24 +1,22 @@
-error[E0596]: cannot borrow immutable local variable `y` as mutable
-  --> $DIR/augmented-assignments.rs:21:5
-   |
-LL |     let y = Int(2);
-   |         - help: make this binding mutable: `mut y`
-...
-LL |     y
-   |     ^ cannot borrow mutably
-
-error[E0382]: use of moved value: `x`
-  --> $DIR/augmented-assignments.rs:13:5
+error[E0505]: cannot move out of `x` because it is borrowed
+  --> $DIR/augmented-assignments.rs:16:5
    |
 LL |     x
-   |     ^ value used here after move
+   |     - borrow of `x` occurs here
 ...
 LL |     x;
-   |     - value moved here
+   |     ^ 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
    |
-   = note: move occurs because `x` has type `Int`, which does not implement the `Copy` trait
+LL |     let y = Int(2);
+   |         - help: consider changing this to be mutable: `mut y`
+...
+LL |     y
+   |     ^ cannot borrow as mutable
 
 error: aborting due to 2 previous errors
 
-Some errors occurred: E0382, E0596.
-For more information about an error, try `rustc --explain E0382`.
+Some errors have detailed explanations: E0505, E0596.
+For more information about an error, try `rustc --explain E0505`.