|
1 | | -error[E0070]: invalid left-hand side expression |
| 1 | +error[E0070]: invalid left-hand side of assignment |
2 | 2 | --> $DIR/bad-expr-lhs.rs:2:5 |
3 | 3 | | |
4 | 4 | LL | 1 = 2; |
5 | | - | ^^^^^ left-hand of expression not valid |
| 5 | + | -^^^^ |
| 6 | + | | |
| 7 | + | cannot assign to this expression |
6 | 8 |
|
7 | | -error[E0067]: invalid left-hand side expression |
8 | | - --> $DIR/bad-expr-lhs.rs:3:5 |
| 9 | +error[E0067]: invalid left-hand side of assignment |
| 10 | + --> $DIR/bad-expr-lhs.rs:3:7 |
9 | 11 | | |
10 | 12 | LL | 1 += 2; |
11 | | - | ^ invalid expression for left-hand side |
| 13 | + | - ^^ |
| 14 | + | | |
| 15 | + | cannot assign to this expression |
12 | 16 |
|
13 | | -error[E0070]: invalid left-hand side expression |
| 17 | +error[E0070]: invalid left-hand side of assignment |
14 | 18 | --> $DIR/bad-expr-lhs.rs:4:5 |
15 | 19 | | |
16 | 20 | LL | (1, 2) = (3, 4); |
17 | | - | ^^^^^^^^^^^^^^^ left-hand of expression not valid |
| 21 | + | ------^^^^^^^^^ |
| 22 | + | | |
| 23 | + | cannot assign to this expression |
18 | 24 |
|
19 | | -error[E0070]: invalid left-hand side expression |
| 25 | +error[E0070]: invalid left-hand side of assignment |
20 | 26 | --> $DIR/bad-expr-lhs.rs:7:5 |
21 | 27 | | |
22 | 28 | LL | (a, b) = (3, 4); |
23 | | - | ^^^^^^^^^^^^^^^ left-hand of expression not valid |
| 29 | + | ------^^^^^^^^^ |
| 30 | + | | |
| 31 | + | cannot assign to this expression |
24 | 32 |
|
25 | | -error[E0070]: invalid left-hand side expression |
| 33 | +error[E0070]: invalid left-hand side of assignment |
26 | 34 | --> $DIR/bad-expr-lhs.rs:9:5 |
27 | 35 | | |
28 | 36 | LL | None = Some(3); |
29 | | - | ^^^^^^^^^^^^^^ left-hand of expression not valid |
| 37 | + | ----^^^^^^^^^^ |
| 38 | + | | |
| 39 | + | cannot assign to this expression |
30 | 40 |
|
31 | 41 | error: aborting due to 5 previous errors |
32 | 42 |
|
|
0 commit comments