]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unboxed-closures/unboxed-closures-borrow-conflict.stderr
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[rust.git] / src / test / 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    |             borrow of `x` occurs 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`.