]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-40510-3.stderr
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-40510-3.stderr
1 error: captured variable cannot escape `FnMut` closure body
2   --> $DIR/issue-40510-3.rs:7:9
3    |
4 LL |       let mut x: Vec<()> = Vec::new();
5    |           ----- variable defined here
6 LL |
7 LL |       || {
8    |        - inferred to be a `FnMut` closure
9 LL | /         || {
10 LL | |             x.push(())
11    | |             - variable captured here
12 LL | |         }
13    | |_________^ returns a closure that contains a reference to a captured variable, which then escapes the closure body
14    |
15    = note: `FnMut` closures only have access to their captured variables while they are executing...
16    = note: ...therefore, they cannot allow references to captured variables to escape
17 help: consider adding 'move' keyword before the nested closure
18    |
19 LL |         move || {
20    |         ++++
21
22 error: aborting due to previous error
23