]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0070.stderr
New upstream version 1.58.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0070.stderr
CommitLineData
dfeec247
XL
1error[E0070]: invalid left-hand side of assignment
2 --> $DIR/E0070.rs:6:16
2c00a5a8 3 |
532ac7d7 4LL | SOME_CONST = 14;
dfeec247
XL
5 | ---------- ^
6 | |
7 | cannot assign to this expression
2c00a5a8 8
dfeec247
XL
9error[E0070]: invalid left-hand side of assignment
10 --> $DIR/E0070.rs:7:7
2c00a5a8 11 |
532ac7d7 12LL | 1 = 3;
dfeec247
XL
13 | - ^
14 | |
15 | cannot assign to this expression
2c00a5a8 16
dfeec247
XL
17error[E0070]: invalid left-hand side of assignment
18 --> $DIR/E0070.rs:8:23
2c00a5a8 19 |
532ac7d7 20LL | some_other_func() = 4;
dfeec247
XL
21 | ----------------- ^
22 | |
23 | cannot assign to this expression
2c00a5a8 24
3c0e092e 25error: aborting due to 3 previous errors
2c00a5a8 26
3c0e092e 27For more information about this error, try `rustc --explain E0070`.