remove the issue_5723_bootstrap feature
This commit is contained in:
parent
28fc413c8f
commit
609fde8569
4 changed files with 3 additions and 9 deletions
|
|
@ -25,9 +25,6 @@ declare_features! (
|
||||||
// feature-group-start: for testing purposes
|
// feature-group-start: for testing purposes
|
||||||
// -------------------------------------------------------------------------
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
/// A temporary feature gate used to enable parser extensions needed
|
|
||||||
/// to bootstrap fix for #5723.
|
|
||||||
(accepted, issue_5723_bootstrap, "1.0.0", None),
|
|
||||||
/// These are used to test this portion of the compiler,
|
/// These are used to test this portion of the compiler,
|
||||||
/// they don't actually mean anything.
|
/// they don't actually mean anything.
|
||||||
(accepted, test_accepted_feature, "1.0.0", None),
|
(accepted, test_accepted_feature, "1.0.0", None),
|
||||||
|
|
|
||||||
|
|
@ -172,6 +172,9 @@ declare_features! (
|
||||||
/// Allow anonymous constants from an inline `const` block in pattern position
|
/// Allow anonymous constants from an inline `const` block in pattern position
|
||||||
(removed, inline_const_pat, "1.88.0", Some(76001),
|
(removed, inline_const_pat, "1.88.0", Some(76001),
|
||||||
Some("removed due to implementation concerns as it requires significant refactorings"), 138492),
|
Some("removed due to implementation concerns as it requires significant refactorings"), 138492),
|
||||||
|
/// A temporary feature gate used to enable parser extensions needed
|
||||||
|
/// to bootstrap fix for #5723.
|
||||||
|
(removed, issue_5723_bootstrap, "CURRENT_RUSTC_VERSION", None, None),
|
||||||
/// Lazily evaluate constants. This allows constants to depend on type parameters.
|
/// Lazily evaluate constants. This allows constants to depend on type parameters.
|
||||||
(removed, lazy_normalization_consts, "1.56.0", Some(72219), Some("superseded by `generic_const_exprs`"), 88369),
|
(removed, lazy_normalization_consts, "1.56.0", Some(72219), Some("superseded by `generic_const_exprs`"), 88369),
|
||||||
/// Changes `impl Trait` to capture all lifetimes in scope.
|
/// Changes `impl Trait` to capture all lifetimes in scope.
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,5 @@
|
||||||
//@ run-pass
|
//@ run-pass
|
||||||
#![allow(dead_code)]
|
#![allow(dead_code)]
|
||||||
#![allow(stable_features)]
|
|
||||||
|
|
||||||
#![feature(issue_5723_bootstrap)]
|
|
||||||
|
|
||||||
trait Foo {
|
trait Foo {
|
||||||
fn dummy(&self) { }
|
fn dummy(&self) { }
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,6 @@
|
||||||
//@ run-pass
|
//@ run-pass
|
||||||
#![allow(dead_code)]
|
#![allow(dead_code)]
|
||||||
#![allow(unused_variables)]
|
#![allow(unused_variables)]
|
||||||
#![allow(stable_features)]
|
|
||||||
|
|
||||||
#![feature(issue_5723_bootstrap)]
|
|
||||||
|
|
||||||
trait Foo {
|
trait Foo {
|
||||||
fn dummy(&self) { }
|
fn dummy(&self) { }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue