]> git.lizzy.rs Git - rust.git/blob - tests/ui/closures/issue-82438-mut-without-upvar.stderr
Rollup merge of #107700 - jyn514:tools-builder, r=Mark-Simulacrum
[rust.git] / tests / ui / closures / issue-82438-mut-without-upvar.stderr
1 error[E0596]: cannot borrow `c` as mutable, as it is not declared as mutable
2   --> $DIR/issue-82438-mut-without-upvar.rs:27:27
3    |
4 LL |     A.f(participant_name, &mut c);
5    |                           ^^^^^^ cannot borrow as mutable
6    |
7 help: consider changing this to be mutable
8    |
9 LL |     let mut c = |a, b, c, d| {};
10    |         +++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0596`.