]> git.lizzy.rs Git - rust.git/blob - tests/ui/unboxed-closures/unboxed-closures-borrow-conflict.stderr
Auto merge of #107054 - petrochenkov:effvisdoc3, r=GuillaumeGomez
[rust.git] / tests / ui / unboxed-closures / unboxed-closures-borrow-conflict.stderr
1 error[E0503]: cannot use `x` because it was mutably borrowed
2   --> $DIR/unboxed-closures-borrow-conflict.rs:9:14
3    |
4 LL |     let f = || x += 1;
5    |             -- - borrow occurs due to use of `x` in closure
6    |             |
7    |             `x` is borrowed here
8 LL |     let _y = x;
9    |              ^ use of borrowed `x`
10 LL |     f;
11    |     - borrow later used here
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0503`.