]> git.lizzy.rs Git - rust.git/blob - tests/ui/unboxed-closures/unboxed-closures-infer-fnmut-move-missing-mut.stderr
Auto merge of #107054 - petrochenkov:effvisdoc3, r=GuillaumeGomez
[rust.git] / tests / ui / unboxed-closures / unboxed-closures-infer-fnmut-move-missing-mut.stderr
1 error[E0596]: cannot borrow `tick` as mutable, as it is not declared as mutable
2   --> $DIR/unboxed-closures-infer-fnmut-move-missing-mut.rs:7:5
3    |
4 LL |     let tick = move || counter += 1;
5    |                        ------- calling `tick` requires mutable binding due to possible mutation of `counter`
6 LL |     tick();
7    |     ^^^^ cannot borrow as mutable
8    |
9 help: consider changing this to be mutable
10    |
11 LL |     let mut tick = move || counter += 1;
12    |         +++
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0596`.