]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-11873.stderr
Rollup merge of #59041 - saleemjaffer:trait_doc_comment_better_error_msg, r=pnkfelix
[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:9
3    |
4 LL |     let mut f = || v.push(2);
5    |                 -- borrow of `v` occurs here
6 LL |     let _w = 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`.