|
1 |
| -error[E0658]: destructuring assignments are unstable |
2 |
| - --> $DIR/note-unsupported.rs:6:12 |
3 |
| - | |
4 |
| -LL | (a, b) = (3, 4); |
5 |
| - | ------ ^ |
6 |
| - | | |
7 |
| - | cannot assign to this expression |
8 |
| - | |
9 |
| - = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information |
10 |
| - = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable |
11 |
| - |
12 |
| -error[E0658]: destructuring assignments are unstable |
13 |
| - --> $DIR/note-unsupported.rs:10:12 |
14 |
| - | |
15 |
| -LL | [a, b] = [3, 4]; |
16 |
| - | ------ ^ |
17 |
| - | | |
18 |
| - | cannot assign to this expression |
19 |
| - | |
20 |
| - = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information |
21 |
| - = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable |
22 |
| - |
23 |
| -error[E0658]: destructuring assignments are unstable |
24 |
| - --> $DIR/note-unsupported.rs:16:22 |
25 |
| - | |
26 |
| -LL | S { x: a, y: b } = s; |
27 |
| - | ---------------- ^ |
28 |
| - | | |
29 |
| - | cannot assign to this expression |
30 |
| - | |
31 |
| - = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information |
32 |
| - = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable |
33 |
| - |
34 |
| -error[E0658]: destructuring assignments are unstable |
35 |
| - --> $DIR/note-unsupported.rs:20:21 |
36 |
| - | |
37 |
| -LL | S { x: a, ..s } = S { x: 3, y: 4 }; |
38 |
| - | --------------- ^ |
39 |
| - | | |
40 |
| - | cannot assign to this expression |
41 |
| - | |
42 |
| - = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information |
43 |
| - = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable |
44 |
| - |
45 | 1 | error: functional record updates are not allowed in destructuring assignments
|
46 | 2 | --> $DIR/note-unsupported.rs:20:17
|
47 | 3 | |
|
48 | 4 | LL | S { x: a, ..s } = S { x: 3, y: 4 };
|
49 | 5 | | ^ help: consider removing the trailing pattern
|
50 | 6 |
|
51 |
| -error[E0658]: destructuring assignments are unstable |
52 |
| - --> $DIR/note-unsupported.rs:26:17 |
53 |
| - | |
54 |
| -LL | ((a, b), c) = ((3, 4), 5); |
55 |
| - | ----------- ^ |
56 |
| - | | |
57 |
| - | cannot assign to this expression |
58 |
| - | |
59 |
| - = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information |
60 |
| - = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable |
61 |
| - |
62 | 7 | error[E0368]: binary assignment operation `+=` cannot be applied to type `({integer}, {integer})`
|
63 | 8 | --> $DIR/note-unsupported.rs:7:5
|
64 | 9 | |
|
@@ -124,7 +69,7 @@ LL | S { x: a, y: b } += s;
|
124 | 69 | | |
|
125 | 70 | | cannot assign to this expression
|
126 | 71 |
|
127 |
| -error: aborting due to 12 previous errors |
| 72 | +error: aborting due to 7 previous errors |
128 | 73 |
|
129 |
| -Some errors have detailed explanations: E0067, E0368, E0658. |
| 74 | +Some errors have detailed explanations: E0067, E0368. |
130 | 75 | For more information about an error, try `rustc --explain E0067`.
|
0 commit comments