diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-10-12 22:13:25 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-12 22:13:25 +0530 |
| commit | 117a98c5ceec27ef909bf95e62d079529ce24a82 (patch) | |
| tree | a3e467e426042643cb927b4bc150722164cd573e | |
| parent | c763ebc72f45c0d086875f6acf88b48d7f39eb23 (diff) | |
| parent | d17a69e4535a73b1c556f602e97cc576ef69fadd (diff) | |
| download | rust-117a98c5ceec27ef909bf95e62d079529ce24a82.tar.gz rust-117a98c5ceec27ef909bf95e62d079529ce24a82.zip | |
Rollup merge of #102883 - Urgau:fix-stabilization-half_open_range_patterns, r=lcnr
Fix stabilization of `feature(half_open_range_patterns)` Fixes https://github.com/rust-lang/rust/pull/102275/files#r991292215 by removing the relevant code that was [already partial moved](https://github.com/rust-lang/rust/pull/102275/files#diff-307e0d3a2037c11a3fa16822fbaa0fec08e57ac7d0d6e7354f6005c9482a9e26). cc `@Undin`
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs index 48c40eae662..5ea433e6b3d 100644 --- a/compiler/rustc_feature/src/active.rs +++ b/compiler/rustc_feature/src/active.rs @@ -412,8 +412,6 @@ declare_features! ( (incomplete, generic_associated_types_extended, "1.61.0", Some(95451), None), /// Allows non-trivial generic constants which have to have wfness manually propagated to callers (incomplete, generic_const_exprs, "1.56.0", Some(76560), None), - /// Allows using `..X`, `..=X`, `...X`, and `X..` as a pattern. - (active, half_open_range_patterns, "1.41.0", Some(67264), None), /// Allows using `..=X` as a patterns in slices. (active, half_open_range_patterns_in_slices, "CURRENT_RUSTC_VERSION", Some(67264), None), /// Allows `if let` guard in match arms. |
