@@ -12,7 +12,7 @@ LL | (a, b) = (3, 4);
1212 | |
1313 | cannot assign to this expression
1414 |
15- = note: see issue #372 <https://github.com/rust-lang/rust/issues/372 > for more information
15+ = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126 > for more information
1616 = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
1717
1818error[E0368]: binary assignment operation `+=` cannot be applied to type `({integer}, {integer})`
@@ -39,7 +39,7 @@ LL | [a, b] = [3, 4];
3939 | |
4040 | cannot assign to this expression
4141 |
42- = note: see issue #372 <https://github.com/rust-lang/rust/issues/372 > for more information
42+ = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126 > for more information
4343 = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
4444
4545error[E0368]: binary assignment operation `+=` cannot be applied to type `[{integer}; 2]`
@@ -66,7 +66,7 @@ LL | S { x: a, y: b } = s;
6666 | |
6767 | cannot assign to this expression
6868 |
69- = note: see issue #372 <https://github.com/rust-lang/rust/issues/372 > for more information
69+ = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126 > for more information
7070 = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
7171
7272error[E0368]: binary assignment operation `+=` cannot be applied to type `S`
@@ -95,7 +95,7 @@ LL | S { x: a, ..s } = S { x: 3, y: 4 };
9595 | |
9696 | cannot assign to this expression
9797 |
98- = note: see issue #372 <https://github.com/rust-lang/rust/issues/372 > for more information
98+ = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126 > for more information
9999 = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
100100
101101error[E0658]: destructuring assignments are unstable
@@ -106,7 +106,7 @@ LL | ((a, b), c) = ((3, 4), 5);
106106 | |
107107 | cannot assign to this expression
108108 |
109- = note: see issue #372 <https://github.com/rust-lang/rust/issues/372 > for more information
109+ = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126 > for more information
110110 = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
111111
112112error: aborting due to 12 previous errors
0 commit comments