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