@@ -6,7 +6,7 @@ LL | (a, b) = (3, 4);
66 | |
77 | cannot assign to this expression
88 |
9- = note: destructuring assignments are not yet supported
9+ = note: destructuring assignments are not currently supported
1010 = note: for more information, see https://github.com/rust-lang/rfcs/issues/372
1111
1212error[E0368]: binary assignment operation `+=` cannot be applied to type `({integer}, {integer})`
@@ -27,7 +27,7 @@ LL | (a, b) += (3, 4);
2727 | |
2828 | cannot assign to this expression
2929 |
30- = note: destructuring assignments are not yet supported
30+ = note: destructuring assignments are not currently supported
3131 = note: for more information, see https://github.com/rust-lang/rfcs/issues/372
3232
3333error[E0070]: invalid left-hand side of assignment
@@ -38,7 +38,7 @@ LL | [a, b] = [3, 4];
3838 | |
3939 | cannot assign to this expression
4040 |
41- = note: destructuring assignments are not yet supported
41+ = note: destructuring assignments are not currently supported
4242 = note: for more information, see https://github.com/rust-lang/rfcs/issues/372
4343
4444error[E0368]: binary assignment operation `+=` cannot be applied to type `[{integer}; 2]`
@@ -59,7 +59,7 @@ LL | [a, b] += [3, 4];
5959 | |
6060 | cannot assign to this expression
6161 |
62- = note: destructuring assignments are not yet supported
62+ = note: destructuring assignments are not currently supported
6363 = note: for more information, see https://github.com/rust-lang/rfcs/issues/372
6464
6565error[E0070]: invalid left-hand side of assignment
@@ -70,7 +70,7 @@ LL | S { x: a, y: b } = s;
7070 | |
7171 | cannot assign to this expression
7272 |
73- = note: destructuring assignments are not yet supported
73+ = note: destructuring assignments are not currently supported
7474 = note: for more information, see https://github.com/rust-lang/rfcs/issues/372
7575
7676error[E0368]: binary assignment operation `+=` cannot be applied to type `S`
@@ -91,7 +91,7 @@ LL | S { x: a, y: b } += s;
9191 | |
9292 | cannot assign to this expression
9393 |
94- = note: destructuring assignments are not yet supported
94+ = note: destructuring assignments are not currently supported
9595 = note: for more information, see https://github.com/rust-lang/rfcs/issues/372
9696
9797error[E0070]: invalid left-hand side of assignment
@@ -102,7 +102,7 @@ LL | S { x: a, ..s } = S { x: 3, y: 4 };
102102 | |
103103 | cannot assign to this expression
104104 |
105- = note: destructuring assignments are not yet supported
105+ = note: destructuring assignments are not currently supported
106106 = note: for more information, see https://github.com/rust-lang/rfcs/issues/372
107107
108108error[E0070]: invalid left-hand side of assignment
@@ -113,7 +113,7 @@ LL | ((a, b), c) = ((3, 4), 5);
113113 | |
114114 | cannot assign to this expression
115115 |
116- = note: destructuring assignments are not yet supported
116+ = note: destructuring assignments are not currently supported
117117 = note: for more information, see https://github.com/rust-lang/rfcs/issues/372
118118
119119error: aborting due to 11 previous errors
0 commit comments