Open
Description
#110395 left us with many test cases that have been disabled because the standard library traits that used to be const
are not anymore.
For these cases we should:
- Find out if they can be written without depending on the
trait
s orimpl
s being const. If they can, rewrite them and re-enable them. - If they can't be written without depending on
impl const
or const traits, constify the relevant traits and impls where possible. Re-enable them
Metadata
Metadata
Assignees
Labels
Area: The testsuite used to check the correctness of rustcCategory: PRs that clean code up or issues documenting cleanup.`#![feature(const_trait_impl)]`Relevant to the compiler team, which will review and decide on the PR/issue.Relevant to the library team, which will review and decide on the PR/issue.