]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-46023.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / 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`.