Skip to content

Commit 609fde8

Browse files
committed
remove the issue_5723_bootstrap feature
1 parent 28fc413 commit 609fde8

4 files changed

Lines changed: 3 additions & 9 deletions

File tree

compiler/rustc_feature/src/accepted.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ declare_features! (
2525
// feature-group-start: for testing purposes
2626
// -------------------------------------------------------------------------
2727

28-
/// A temporary feature gate used to enable parser extensions needed
29-
/// to bootstrap fix for #5723.
30-
(accepted, issue_5723_bootstrap, "1.0.0", None),
3128
/// These are used to test this portion of the compiler,
3229
/// they don't actually mean anything.
3330
(accepted, test_accepted_feature, "1.0.0", None),

compiler/rustc_feature/src/removed.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ declare_features! (
172172
/// Allow anonymous constants from an inline `const` block in pattern position
173173
(removed, inline_const_pat, "1.88.0", Some(76001),
174174
Some("removed due to implementation concerns as it requires significant refactorings"), 138492),
175+
/// A temporary feature gate used to enable parser extensions needed
176+
/// to bootstrap fix for #5723.
177+
(removed, issue_5723_bootstrap, "CURRENT_RUSTC_VERSION", None, None),
175178
/// Lazily evaluate constants. This allows constants to depend on type parameters.
176179
(removed, lazy_normalization_consts, "1.56.0", Some(72219), Some("superseded by `generic_const_exprs`"), 88369),
177180
/// Changes `impl Trait` to capture all lifetimes in scope.

tests/ui/regions/regions-bound-lists-feature-gate-2.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
//@ run-pass
22
#![allow(dead_code)]
3-
#![allow(stable_features)]
4-
5-
#![feature(issue_5723_bootstrap)]
63

74
trait Foo {
85
fn dummy(&self) { }

tests/ui/regions/regions-bound-lists-feature-gate.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
//@ run-pass
22
#![allow(dead_code)]
33
#![allow(unused_variables)]
4-
#![allow(stable_features)]
5-
6-
#![feature(issue_5723_bootstrap)]
74

85
trait Foo {
96
fn dummy(&self) { }

0 commit comments

Comments
 (0)