]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-pat-reassign-binding.stderr
Rollup merge of #106625 - Swatinem:ref/cov6, r=nagisa
[rust.git] / tests / ui / borrowck / borrowck-pat-reassign-binding.stderr
1 error[E0506]: cannot assign to `x` because it is borrowed
2   --> $DIR/borrowck-pat-reassign-binding.rs:10:11
3    |
4 LL |       Some(ref i) => {
5    |            ----- `x` is borrowed here
6 LL |           // But on this branch, `i` is an outstanding borrow
7 LL |           x = Some(*i+1);
8    |           ^^^^^^^^^^^^^^ `x` is assigned to here but it was already borrowed
9 LL |           drop(i);
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`.