]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/issue-52713-bug.stderr
Auto merge of #101768 - sunfishcode:sunfishcode/wasi-stdio-lock-asfd, r=joshtriplett
[rust.git] / src / test / 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`.