@@ -6,7 +6,7 @@ LL | (a, b) = (3, 4);
6
6
| |
7
7
| cannot assign to this expression
8
8
|
9
- = note: destructuring assignments are not yet supported
9
+ = note: destructuring assignments are not currently supported
10
10
= note: for more information, see https://github.com/rust-lang/rfcs/issues/372
11
11
12
12
error[E0368]: binary assignment operation `+=` cannot be applied to type `({integer}, {integer})`
@@ -27,7 +27,7 @@ LL | (a, b) += (3, 4);
27
27
| |
28
28
| cannot assign to this expression
29
29
|
30
- = note: destructuring assignments are not yet supported
30
+ = note: destructuring assignments are not currently supported
31
31
= note: for more information, see https://github.com/rust-lang/rfcs/issues/372
32
32
33
33
error[E0070]: invalid left-hand side of assignment
@@ -38,7 +38,7 @@ LL | [a, b] = [3, 4];
38
38
| |
39
39
| cannot assign to this expression
40
40
|
41
- = note: destructuring assignments are not yet supported
41
+ = note: destructuring assignments are not currently supported
42
42
= note: for more information, see https://github.com/rust-lang/rfcs/issues/372
43
43
44
44
error[E0368]: binary assignment operation `+=` cannot be applied to type `[{integer}; 2]`
@@ -59,7 +59,7 @@ LL | [a, b] += [3, 4];
59
59
| |
60
60
| cannot assign to this expression
61
61
|
62
- = note: destructuring assignments are not yet supported
62
+ = note: destructuring assignments are not currently supported
63
63
= note: for more information, see https://github.com/rust-lang/rfcs/issues/372
64
64
65
65
error[E0070]: invalid left-hand side of assignment
@@ -70,7 +70,7 @@ LL | S { x: a, y: b } = s;
70
70
| |
71
71
| cannot assign to this expression
72
72
|
73
- = note: destructuring assignments are not yet supported
73
+ = note: destructuring assignments are not currently supported
74
74
= note: for more information, see https://github.com/rust-lang/rfcs/issues/372
75
75
76
76
error[E0368]: binary assignment operation `+=` cannot be applied to type `S`
@@ -91,7 +91,7 @@ LL | S { x: a, y: b } += s;
91
91
| |
92
92
| cannot assign to this expression
93
93
|
94
- = note: destructuring assignments are not yet supported
94
+ = note: destructuring assignments are not currently supported
95
95
= note: for more information, see https://github.com/rust-lang/rfcs/issues/372
96
96
97
97
error[E0070]: invalid left-hand side of assignment
@@ -102,7 +102,7 @@ LL | S { x: a, ..s } = S { x: 3, y: 4 };
102
102
| |
103
103
| cannot assign to this expression
104
104
|
105
- = note: destructuring assignments are not yet supported
105
+ = note: destructuring assignments are not currently supported
106
106
= note: for more information, see https://github.com/rust-lang/rfcs/issues/372
107
107
108
108
error[E0070]: invalid left-hand side of assignment
@@ -113,7 +113,7 @@ LL | ((a, b), c) = ((3, 4), 5);
113
113
| |
114
114
| cannot assign to this expression
115
115
|
116
- = note: destructuring assignments are not yet supported
116
+ = note: destructuring assignments are not currently supported
117
117
= note: for more information, see https://github.com/rust-lang/rfcs/issues/372
118
118
119
119
error: aborting due to 11 previous errors
0 commit comments