]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-46023.stderr
Rollup merge of #105216 - GuillaumeGomez:rm-unused-gui-test, r=notriddle
[rust.git] / src / test / ui / nll / issue-46023.stderr
1 error[E0594]: cannot assign to `x`, as it is not declared as mutable
2   --> $DIR/issue-46023.rs:5:9
3    |
4 LL |     let x = 0;
5    |         - help: consider changing this to be mutable: `mut x`
6 ...
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`.