]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-52713-bug.stderr
Rollup merge of #106856 - vadorovsky:fix-atomic-annotations, r=joshtriplett
[rust.git] / tests / ui / borrowck / issue-52713-bug.stderr
1 error[E0506]: cannot assign to `x` because it is borrowed
2   --> $DIR/issue-52713-bug.rs:12:5
3    |
4 LL |     let y = &x;
5    |             -- `x` is borrowed here
6 ...
7 LL |     x += 1;
8    |     ^^^^^^ `x` is assigned to here but it was already borrowed
9 LL |     println!("{}", y);
10    |                    - borrow later used here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0506`.