]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/generator-upvar-mutability.stderr
Auto merge of #105121 - oli-obk:simpler-cheaper-dump_mir, r=nnethercote
[rust.git] / src / test / ui / nll / generator-upvar-mutability.stderr
1 error[E0594]: cannot assign to `x`, as it is not declared as mutable
2   --> $DIR/generator-upvar-mutability.rs:8:9
3    |
4 LL |     let x = 0;
5    |         - help: consider changing this to be mutable: `mut x`
6 LL |     move || {
7 LL |         x = 1;
8    |         ^^^^^ cannot assign
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0594`.