]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-40510-1.migrate.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-1.migrate.stderr
1 error: captured variable cannot escape `FnMut` closure body
2   --> $DIR/issue-40510-1.rs:11:9
3    |
4 LL |     || {
5    |      - inferred to be a `FnMut` closure
6 LL |         &mut x
7    |         ^^^^^^ returns a reference to a captured variable which escapes the closure body
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