diff options
| author | Urgau <urgau@numericable.fr> | 2022-10-10 15:45:05 +0200 |
|---|---|---|
| committer | Urgau <urgau@numericable.fr> | 2022-10-10 15:45:57 +0200 |
| commit | d17a69e4535a73b1c556f602e97cc576ef69fadd (patch) | |
| tree | d94d456a98cbbaf849b41e1515006a8bb097d0ad | |
| parent | 691aeaad6c9ee3483f2851695379b348b8a92a43 (diff) | |
| download | rust-d17a69e4535a73b1c556f602e97cc576ef69fadd.tar.gz rust-d17a69e4535a73b1c556f602e97cc576ef69fadd.zip | |
Fix stabilization of `feature(half_open_range_patterns)`
| -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. |
