summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-52713-bug.stderr
blob: 4abb6fb2c71868674dbf2266cd1c3afae61c9c71 (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;
   |             -- borrow of `x` occurs here
...
LL |     x += 1;
   |     ^^^^^^ assignment to borrowed `x` occurs here
LL |     println!("{}", y);
   |                    - borrow later used here

error: aborting due to previous error

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