]> git.proxmox.com Git - rustc.git/blame - src/test/ui/closures/issue-82438-mut-without-upvar.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / closures / issue-82438-mut-without-upvar.stderr
CommitLineData
6a06907d
XL
1error[E0596]: cannot borrow `c` as mutable, as it is not declared as mutable
2 --> $DIR/issue-82438-mut-without-upvar.rs:27:27
3 |
4LL | let c = |a, b, c, d| {};
5 | - help: consider changing this to be mutable: `mut c`
923072b8 6LL |
6a06907d
XL
7LL | A.f(participant_name, &mut c);
8 | ^^^^^^ cannot borrow as mutable
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0596`.