]> git.lizzy.rs Git - rust.git/blob - tests/ui/unboxed-closures/unboxed-closures-infer-fnmut-missing-mut.stderr
Rollup merge of #106856 - vadorovsky:fix-atomic-annotations, r=joshtriplett
[rust.git] / tests / ui / unboxed-closures / unboxed-closures-infer-fnmut-missing-mut.stderr
1 error[E0596]: cannot borrow `tick` as mutable, as it is not declared as mutable
2   --> $DIR/unboxed-closures-infer-fnmut-missing-mut.rs:7:5
3    |
4 LL |     let tick = || counter += 1;
5    |                   ------- calling `tick` requires mutable binding due to mutable borrow 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 = || counter += 1;
12    |         +++
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0596`.