]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-11873.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[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:14:9
3    |
4 LL |     let mut f = || v.push(2);
5    |                 -- borrow of `v` occurs here
6 LL |     let _w = v; //~ ERROR: cannot move out of `v`
7    |         ^^ move out of `v` occurs here
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0505`.