@@ -12,7 +12,7 @@ LL | (a, b) = (3, 4);
12
12
| |
13
13
| cannot assign to this expression
14
14
|
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
16
16
= help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
17
17
18
18
error[E0368]: binary assignment operation `+=` cannot be applied to type `({integer}, {integer})`
@@ -39,7 +39,7 @@ LL | [a, b] = [3, 4];
39
39
| |
40
40
| cannot assign to this expression
41
41
|
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
43
43
= help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
44
44
45
45
error[E0368]: binary assignment operation `+=` cannot be applied to type `[{integer}; 2]`
@@ -66,7 +66,7 @@ LL | S { x: a, y: b } = s;
66
66
| |
67
67
| cannot assign to this expression
68
68
|
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
70
70
= help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
71
71
72
72
error[E0368]: binary assignment operation `+=` cannot be applied to type `S`
@@ -95,7 +95,7 @@ LL | S { x: a, ..s } = S { x: 3, y: 4 };
95
95
| |
96
96
| cannot assign to this expression
97
97
|
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
99
99
= help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
100
100
101
101
error[E0658]: destructuring assignments are unstable
@@ -106,7 +106,7 @@ LL | ((a, b), c) = ((3, 4), 5);
106
106
| |
107
107
| cannot assign to this expression
108
108
|
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
110
110
= help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
111
111
112
112
error: aborting due to 12 previous errors
0 commit comments