]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-pat-reassign-binding.stderr
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[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    |            ----- borrow of `x` occurs here
6 LL |           // But on this branch, `i` is an outstanding borrow
7 LL |           x = Some(*i+1);
8    |           ^^^^^^^^^^^^^^ assignment to borrowed `x` occurs here
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`.