]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-49824.stderr
Add FAQ for NLL migration
[rust.git] / src / test / ui / issues / issue-49824.stderr
1 warning: captured variable cannot escape `FnMut` closure body
2   --> $DIR/issue-49824.rs:10:9
3    |
4 LL |       || {
5    |        - inferred to be a `FnMut` closure
6 LL | /         || {
7 LL | |
8 LL | |
9 LL | |
10 LL | |             let _y = &mut x;
11 LL | |         }
12    | |_________^ returns a closure that contains a reference to a captured variable, which then escapes the closure body
13    |
14    = note: `FnMut` closures only have access to their captured variables while they are executing...
15    = note: ...therefore, they cannot allow references to captured variables to escape
16    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
17    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
18    = note: for more information, try `rustc --explain E0729`
19
20 error: compilation successful
21   --> $DIR/issue-49824.rs:6:1
22    |
23 LL | / fn main() {
24 LL | |
25 LL | |     let mut x = 0;
26 LL | |     || {
27 ...  |
28 LL | |     };
29 LL | | }
30    | |_^
31
32 error: aborting due to previous error
33