]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/augmented-assignments.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / augmented-assignments.stderr
index e04dc2f72a3076a4dd9a4ef8e9b15272582ba584..a7f3328071e26b370c93c6c778cbc64ab2cf7a34 100644 (file)
@@ -1,9 +1,9 @@
 error[E0596]: cannot borrow immutable local variable `y` as mutable
-  --> $DIR/augmented-assignments.rs:30:5
+  --> $DIR/augmented-assignments.rs:31:5
    |
 LL |     let y = Int(2);
-   |         - consider changing this to `mut y`
-LL |     //~^ consider changing this to `mut y`
+   |         - help: make this binding mutable: `mut y`
+...
 LL |     y   //~ error: cannot borrow immutable local variable `y` as mutable
    |     ^ cannot borrow mutably
 
@@ -20,5 +20,5 @@ LL |     x;  //~ value moved here
 
 error: aborting due to 2 previous errors
 
-You've got a few errors: E0382, E0596
-If you want more information on an error, try using "rustc --explain E0382"
+Some errors occurred: E0382, E0596.
+For more information about an error, try `rustc --explain E0382`.