]> git.lizzy.rs Git - rust.git/blob - src/test/ui/codemap_tests/issue-11715.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / codemap_tests / issue-11715.stderr
1 error[E0499]: cannot borrow `x` as mutable more than once at a time
2   --> $DIR/issue-11715.rs:5:13
3    |
4 LL |     let y = &mut x;
5    |             ------ first mutable borrow occurs here
6 LL |     let z = &mut x;
7    |             ^^^^^^ second mutable borrow occurs here
8 LL |     z.use_mut();
9 LL |     y.use_mut();
10    |     ----------- first borrow later used here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0499`.