]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/augmented-assignments.nll.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / augmented-assignments.nll.stderr
index 57a86227f764d104d6dfa82b593dbc80eeee2f81..840b377263db9147da298f39d154cf16db510cb2 100644 (file)
@@ -1,5 +1,5 @@
 error[E0505]: cannot move out of `x` because it is borrowed
-  --> $DIR/augmented-assignments.rs:26:5
+  --> $DIR/augmented-assignments.rs:16:5
    |
 LL |       x   //~ error: use of moved value: `x`
    |       -
@@ -15,11 +15,11 @@ LL | |     x;  //~ value moved here
    |       borrow later used here
 
 error[E0596]: cannot borrow `y` as mutable, as it is not declared as mutable
-  --> $DIR/augmented-assignments.rs:30:5
+  --> $DIR/augmented-assignments.rs:21:5
    |
 LL |     let y = Int(2);
    |         - help: consider changing this to be mutable: `mut y`
-LL |     //~^ consider changing this to `mut y`
+...
 LL |     y   //~ error: cannot borrow immutable local variable `y` as mutable
    |     ^ cannot borrow as mutable