summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-52713-bug.stderr
blob: ac4936bac4bc0f10025653b435863e62c8e21ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0506]: cannot assign to `x` because it is borrowed
  --> $DIR/issue-52713-bug.rs:12:5
   |
LL |     let y = &x;
   |             -- `x` is borrowed here
...
LL |     x += 1;
   |     ^^^^^^ `x` is assigned to here but it was already borrowed
LL |     println!("{}", y);
   |                    - borrow later used here

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0506`.