]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-11873.stderr
New upstream version 1.36.0+dfsg1
[rustc.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`.