remove #![allow(stable_features)] from most tests#152746
Merged
rust-bors[bot] merged 2 commits intorust-lang:mainfrom Feb 17, 2026
Merged
remove #![allow(stable_features)] from most tests#152746rust-bors[bot] merged 2 commits intorust-lang:mainfrom
#![allow(stable_features)] from most tests#152746rust-bors[bot] merged 2 commits intorust-lang:mainfrom
Conversation
Collaborator
|
rustbot has assigned @petrochenkov. Use Why was this reviewer chosen?The reviewer was selected based on:
|
bjorn3
reviewed
Feb 17, 2026
edf44a7 to
609fde8
Compare
Contributor
|
@bors r+ |
Contributor
jdonszelmann
added a commit
to jdonszelmann/rust
that referenced
this pull request
Feb 17, 2026
…enkov remove `#![allow(stable_features)]` from most tests The only remaining usages are tests that specifically deal with feature gates. This also deletes the very weird `#![feature(issue_5723_bootstrap)]`, a 13 year old "temporary fix" (rust-lang#5723).
This was referenced Feb 17, 2026
rust-bors bot
pushed a commit
that referenced
this pull request
Feb 17, 2026
Rollup of 6 pull requests Successful merges: - #152609 (Install LLVM DLL in the right place on Windows) - #149904 (`-Znext-solver` Remove the forced ambiguity hack from search graph) - #152704 (Remove `QueryCtxt` and trait `HasDepContext`) - #152746 (remove `#![allow(stable_features)]` from most tests) - #152675 (Improve `VaList` stdlib docs) - #152748 (Update `sysinfo` version to `0.38.2`)
rust-timer
added a commit
that referenced
this pull request
Feb 17, 2026
Rollup merge of #152746 - cyrgani:stable-features, r=petrochenkov remove `#![allow(stable_features)]` from most tests The only remaining usages are tests that specifically deal with feature gates. This also deletes the very weird `#![feature(issue_5723_bootstrap)]`, a 13 year old "temporary fix" (#5723).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The only remaining usages are tests that specifically deal with feature gates.
This also deletes the very weird
#![feature(issue_5723_bootstrap)], a 13 year old "temporary fix" (#5723).