]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-11873.stderr
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-11873.stderr
1 error[E0505]: cannot move out of `v` because it is borrowed
2   --> $DIR/issue-11873.rs:4:14
3    |
4 LL |     let mut f = || v.push(2);
5    |                 -- - borrow occurs due to use in closure
6    |                 |
7    |                 borrow of `v` occurs here
8 LL |     let _w = v;
9    |              ^ move out of `v` occurs here
10 LL | 
11 LL |     f();
12    |     - borrow later used here
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0505`.