]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-53040.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / nll / issue-53040.stderr
1 error: captured variable cannot escape `FnMut` closure body
2   --> $DIR/issue-53040.rs:5:8
3    |
4 LL |     || &mut v;
5    |      - ^^^^^^ returns a reference to a captured variable which escapes the closure body
6    |      |
7    |      inferred to be a `FnMut` closure
8    |
9    = note: `FnMut` closures only have access to their captured variables while they are executing...
10    = note: ...therefore, they cannot allow references to captured variables to escape
11
12 error: aborting due to previous error
13