Skip to content

Commit a3d1edb

Browse files
committed
Stabilize destructuring_assignment
1 parent 1796de7 commit a3d1edb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+62
-370
lines changed

compiler/rustc_ast_lowering/src/expr.rs

-19
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use rustc_errors::struct_span_err;
99
use rustc_hir as hir;
1010
use rustc_hir::def::Res;
1111
use rustc_hir::definitions::DefPathData;
12-
use rustc_session::parse::feature_err;
1312
use rustc_span::hygiene::ExpnId;
1413
use rustc_span::source_map::{respan, DesugaringKind, Span, Spanned};
1514
use rustc_span::symbol::{sym, Ident, Symbol};
@@ -930,24 +929,6 @@ impl<'hir> LoweringContext<'_, 'hir> {
930929
self.lower_span(eq_sign_span),
931930
);
932931
}
933-
if !self.sess.features_untracked().destructuring_assignment {
934-
let mut err = feature_err(
935-
&self.sess.parse_sess,
936-
sym::destructuring_assignment,
937-
eq_sign_span,
938-
"destructuring assignments are unstable",
939-
);
940-
err.span_label(lhs.span, "cannot assign to this expression");
941-
if self.is_in_loop_condition {
942-
err.span_suggestion_verbose(
943-
lhs.span.shrink_to_lo(),
944-
"you might have meant to use pattern destructuring",
945-
"let ".to_string(),
946-
rustc_errors::Applicability::MachineApplicable,
947-
);
948-
}
949-
err.emit();
950-
}
951932

952933
let mut assignments = vec![];
953934

compiler/rustc_ast_passes/src/feature_gate.rs

-5
Original file line numberDiff line numberDiff line change
@@ -724,11 +724,6 @@ pub fn check_crate(krate: &ast::Crate, sess: &Session) {
724724
gate_all!(half_open_range_patterns, "half-open range patterns are unstable");
725725
gate_all!(inline_const, "inline-const is experimental");
726726
gate_all!(inline_const_pat, "inline-const in pattern position is experimental");
727-
if sess.parse_sess.span_diagnostic.err_count() == 0 {
728-
// Errors for `destructuring_assignment` can get quite noisy, especially where `_` is
729-
// involved, so we only emit errors where there are no other parsing errors.
730-
gate_all!(destructuring_assignment, "destructuring assignments are unstable");
731-
}
732727

733728
// All uses of `gate_all!` below this point were added in #65742,
734729
// and subsequently disabled (with the non-early gating readded).

compiler/rustc_expand/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(crate_visibility_modifier)]
22
#![feature(decl_macro)]
3-
#![feature(destructuring_assignment)]
3+
#![cfg_attr(bootstrap, feature(destructuring_assignment))]
44
#![feature(if_let_guard)]
55
#![feature(iter_zip)]
66
#![feature(let_else)]

compiler/rustc_feature/src/accepted.rs

+2
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ declare_features! (
114114
(accepted, default_type_params, "1.0.0", None, None),
115115
/// Allows `#[deprecated]` attribute.
116116
(accepted, deprecated, "1.9.0", Some(29935), None),
117+
/// Allows the use of destructuring assignments.
118+
(accepted, destructuring_assignment, "1.59.0", Some(71126), None),
117119
/// Allows `#[doc(alias = "...")]`.
118120
(accepted, doc_alias, "1.48.0", Some(50146), None),
119121
/// Allows `..` in tuple (struct) patterns.

compiler/rustc_feature/src/active.rs

-2
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,6 @@ declare_features! (
356356
(active, default_type_parameter_fallback, "1.3.0", Some(27336), None),
357357
/// Allows `#[derive(Default)]` and `#[default]` on enums.
358358
(active, derive_default_enum, "1.56.0", Some(86985), None),
359-
/// Allows the use of destructuring assignments.
360-
(active, destructuring_assignment, "1.49.0", Some(71126), None),
361359
/// Tells rustdoc to automatically generate `#[doc(cfg(...))]`.
362360
(active, doc_auto_cfg, "1.58.0", Some(43781), None),
363361
/// Allows `#[doc(cfg(...))]`.

compiler/rustc_parse/src/parser/expr.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1265,7 +1265,6 @@ impl<'a> Parser<'a> {
12651265
} else if self.eat_keyword(kw::Let) {
12661266
self.parse_let_expr(attrs)
12671267
} else if self.eat_keyword(kw::Underscore) {
1268-
self.sess.gated_spans.gate(sym::destructuring_assignment, self.prev_token.span);
12691268
Ok(self.mk_expr(self.prev_token.span, ExprKind::Underscore, attrs))
12701269
} else if !self.unclosed_delims.is_empty() && self.check(&token::Semi) {
12711270
// Don't complain about bare semicolons after unclosed braces
@@ -2588,7 +2587,6 @@ impl<'a> Parser<'a> {
25882587
let exp_span = self.prev_token.span;
25892588
// We permit `.. }` on the left-hand side of a destructuring assignment.
25902589
if self.check(&token::CloseDelim(close_delim)) {
2591-
self.sess.gated_spans.gate(sym::destructuring_assignment, self.prev_token.span);
25922590
base = ast::StructRest::Rest(self.prev_token.span.shrink_to_hi());
25932591
break;
25942592
}

compiler/rustc_typeck/src/check/expr.rs

-5
Original file line numberDiff line numberDiff line change
@@ -877,11 +877,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
877877
"let ".to_string(),
878878
Applicability::MachineApplicable,
879879
);
880-
if !self.sess().features_untracked().destructuring_assignment {
881-
// We already emit an E0658 with a suggestion for `while let`, this is
882-
// redundant output.
883-
err.delay_as_bug();
884-
}
885880
break;
886881
}
887882
hir::Node::Item(_)

library/alloc/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
#![feature(cfg_target_has_atomic)]
138138
#![feature(const_fn_trait_bound)]
139139
#![feature(const_trait_impl)]
140-
#![feature(destructuring_assignment)]
140+
#![cfg_attr(bootstrap, feature(destructuring_assignment))]
141141
#![feature(dropck_eyepatch)]
142142
#![feature(exclusive_range_pattern)]
143143
#![feature(fundamental)]

src/test/ui/associated-types/associated-type-destructuring-assignment.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// check-pass
22

3-
#![feature(destructuring_assignment)]
43
#![feature(more_qualified_paths)]
54

65
enum E { V() }

src/test/ui/cross/cross-file-errors/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ mod underscore;
44
fn main() {
55
underscore!();
66
//~^ ERROR `_` can only be used on the left-hand side of an assignment
7-
//~| ERROR destructuring assignments are unstable
87
}
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
error[E0658]: destructuring assignments are unstable
2-
--> $DIR/underscore.rs:8:9
3-
|
4-
LL | _
5-
| ^
6-
|
7-
::: $DIR/main.rs:5:5
8-
|
9-
LL | underscore!();
10-
| ------------- in this macro invocation
11-
|
12-
= note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information
13-
= help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable
14-
= note: this error originates in the macro `underscore` (in Nightly builds, run with -Z macro-backtrace for more info)
15-
161
error: in expressions, `_` can only be used on the left-hand side of an assignment
172
--> $DIR/underscore.rs:8:9
183
|
@@ -26,6 +11,5 @@ LL | underscore!();
2611
|
2712
= note: this error originates in the macro `underscore` (in Nightly builds, run with -Z macro-backtrace for more info)
2813

29-
error: aborting due to 2 previous errors
14+
error: aborting due to previous error
3015

31-
For more information about this error, try `rustc --explain E0658`.
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
fn main() {
22
1 = 2; //~ ERROR invalid left-hand side of assignment
33
1 += 2; //~ ERROR invalid left-hand side of assignment
4-
(1, 2) = (3, 4); //~ ERROR destructuring assignments are unstable
4+
(1, 2) = (3, 4);
5+
//~^ ERROR invalid left-hand side of assignment
56
//~| ERROR invalid left-hand side of assignment
6-
//~| ERROR invalid left-hand side of assignment
7-
8-
let (a, b) = (1, 2);
9-
(a, b) = (3, 4); //~ ERROR destructuring assignments are unstable
107

118
None = Some(3); //~ ERROR invalid left-hand side of assignment
129
}

src/test/ui/destructuring-assignment/bad-expr-lhs.stderr

+3-25
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,3 @@
1-
error[E0658]: destructuring assignments are unstable
2-
--> $DIR/bad-expr-lhs.rs:4:12
3-
|
4-
LL | (1, 2) = (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/bad-expr-lhs.rs:9: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-
231
error[E0070]: invalid left-hand side of assignment
242
--> $DIR/bad-expr-lhs.rs:2:7
253
|
@@ -53,14 +31,14 @@ LL | (1, 2) = (3, 4);
5331
| cannot assign to this expression
5432

5533
error[E0070]: invalid left-hand side of assignment
56-
--> $DIR/bad-expr-lhs.rs:11:10
34+
--> $DIR/bad-expr-lhs.rs:8:10
5735
|
5836
LL | None = Some(3);
5937
| ---- ^
6038
| |
6139
| cannot assign to this expression
6240

63-
error: aborting due to 7 previous errors
41+
error: aborting due to 5 previous errors
6442

65-
Some errors have detailed explanations: E0067, E0070, E0658.
43+
Some errors have detailed explanations: E0067, E0070.
6644
For more information about an error, try `rustc --explain E0067`.

src/test/ui/destructuring-assignment/default-match-bindings-forbidden.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(destructuring_assignment)]
2-
31
fn main() {
42
let mut x = &0;
53
let mut y = &0;

src/test/ui/destructuring-assignment/default-match-bindings-forbidden.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0308]: mismatched types
2-
--> $DIR/default-match-bindings-forbidden.rs:6:5
2+
--> $DIR/default-match-bindings-forbidden.rs:4:5
33
|
44
LL | (x, y) = &(1, 2);
55
| ^^^^^^ ------- this expression has type `&({integer}, {integer})`

src/test/ui/destructuring-assignment/drop-order.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
//! Test that let bindings and destructuring assignments have consistent drop orders
44
5-
#![feature(destructuring_assignment)]
65
#![allow(unused_variables, unused_assignments)]
76

87
use std::cell::RefCell;

src/test/ui/destructuring-assignment/nested_destructure.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// run-pass
22

3-
#![feature(destructuring_assignment)]
4-
53
struct Struct<S, T> {
64
a: S,
75
b: T,

src/test/ui/destructuring-assignment/note-unsupported.rs

+3-8
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,20 @@ struct S { x: u8, y: u8 }
33
fn main() {
44
let (a, b) = (1, 2);
55

6-
(a, b) = (3, 4); //~ ERROR destructuring assignments are unstable
6+
(a, b) = (3, 4);
77
(a, b) += (3, 4); //~ ERROR invalid left-hand side of assignment
88
//~| ERROR binary assignment operation `+=` cannot be applied
99

10-
[a, b] = [3, 4]; //~ ERROR destructuring assignments are unstable
10+
[a, b] = [3, 4];
1111
[a, b] += [3, 4]; //~ ERROR invalid left-hand side of assignment
1212
//~| ERROR binary assignment operation `+=` cannot be applied
1313

1414
let s = S { x: 3, y: 4 };
1515

16-
S { x: a, y: b } = s; //~ ERROR destructuring assignments are unstable
16+
S { x: a, y: b } = s;
1717
S { x: a, y: b } += s; //~ ERROR invalid left-hand side of assignment
1818
//~| ERROR binary assignment operation `+=` cannot be applied
1919

2020
S { x: a, ..s } = S { x: 3, y: 4 };
2121
//~^ ERROR functional record updates are not allowed in destructuring assignments
22-
//~| ERROR destructuring assignments are unstable
23-
24-
let c = 3;
25-
26-
((a, b), c) = ((3, 4), 5); //~ ERROR destructuring assignments are unstable
2722
}

src/test/ui/destructuring-assignment/note-unsupported.stderr

+2-57
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,9 @@
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-
451
error: functional record updates are not allowed in destructuring assignments
462
--> $DIR/note-unsupported.rs:20:17
473
|
484
LL | S { x: a, ..s } = S { x: 3, y: 4 };
495
| ^ help: consider removing the trailing pattern
506

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-
627
error[E0368]: binary assignment operation `+=` cannot be applied to type `({integer}, {integer})`
638
--> $DIR/note-unsupported.rs:7:5
649
|
@@ -124,7 +69,7 @@ LL | S { x: a, y: b } += s;
12469
| |
12570
| cannot assign to this expression
12671

127-
error: aborting due to 12 previous errors
72+
error: aborting due to 7 previous errors
12873

129-
Some errors have detailed explanations: E0067, E0368, E0658.
74+
Some errors have detailed explanations: E0067, E0368.
13075
For more information about an error, try `rustc --explain E0067`.

src/test/ui/destructuring-assignment/slice_destructure.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// run-pass
22

3-
#![feature(destructuring_assignment)]
4-
53
fn main() {
64
let (mut a, mut b);
75
[a, b] = [0, 1];

src/test/ui/destructuring-assignment/slice_destructure_fail.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(destructuring_assignment)]
2-
31
fn main() {
42
let (mut a, mut b);
53
[a, .., b, ..] = [0, 1]; //~ ERROR `..` can only be used once per slice pattern

src/test/ui/destructuring-assignment/slice_destructure_fail.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
error: `..` can only be used once per slice pattern
2-
--> $DIR/slice_destructure_fail.rs:5:14
2+
--> $DIR/slice_destructure_fail.rs:3:14
33
|
44
LL | [a, .., b, ..] = [0, 1];
55
| -- ^^ can only be used once per slice pattern
66
| |
77
| previously used here
88

99
error[E0527]: pattern requires 3 elements but array has 2
10-
--> $DIR/slice_destructure_fail.rs:6:3
10+
--> $DIR/slice_destructure_fail.rs:4:3
1111
|
1212
LL | [a, a, b] = [1, 2];
1313
| ^^^^^^^^^ expected 2 elements
1414

1515
error[E0527]: pattern requires 1 element but array has 2
16-
--> $DIR/slice_destructure_fail.rs:7:3
16+
--> $DIR/slice_destructure_fail.rs:5:3
1717
|
1818
LL | [_] = [1, 2];
1919
| ^^^ expected 2 elements

src/test/ui/destructuring-assignment/struct_destructure.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// run-pass
22

3-
#![feature(destructuring_assignment)]
43
struct Struct<S, T> {
54
a: S,
65
b: T,

src/test/ui/destructuring-assignment/struct_destructure_fail.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(destructuring_assignment)]
21
struct Struct<S, T> {
32
a: S,
43
b: T,

0 commit comments

Comments
 (0)