]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-7573.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / issue-7573.stderr
1 error[E0521]: borrowed data escapes outside of closure
2   --> $DIR/issue-7573.rs:17:9
3    |
4 LL |     let mut lines_to_use: Vec<&CrateId> = Vec::new();
5    |         ---------------- `lines_to_use` declared here, outside of the closure body
6 LL |
7 LL |     let push_id = |installed_id: &CrateId| {
8    |                    ------------ `installed_id` is a reference that is only valid in the closure body
9 LL |
10 LL |         lines_to_use.push(installed_id);
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `installed_id` escapes the closure body here
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0521`.