]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-52713-bug.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[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    |             -- borrow of `x` occurs here
6 ...
7 LL |     x += 1;
8    |     ^^^^^^ assignment to borrowed `x` occurs here
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`.