fix: Catch #[rustc_reservation_impl = "reason"]#22282
Merged
ChayimFriedman2 merged 1 commit intorust-lang:masterfrom May 4, 2026
Merged
fix: Catch #[rustc_reservation_impl = "reason"]#22282ChayimFriedman2 merged 1 commit intorust-lang:masterfrom
#[rustc_reservation_impl = "reason"]#22282ChayimFriedman2 merged 1 commit intorust-lang:masterfrom
Conversation
And not just `#[rustc_reservation_impl]`. This has caused a bug that took me way too long to debug. Basically, with the reservation impl `From<!> for T` overlapping with `From<T> for T`, the solver couldn't deduce from the bound `Ty: From<?var>` that `var = Ty`. Up until now this only caused some unknown types, but with the "type annotations needed" it started becoming visible, and annoying. This is not the first time that we forget some attribute can be applied in more than one reason; perhaps we should unify handling for all `ast::Meta` kinds that have a path.
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.
And not just
#[rustc_reservation_impl].This has caused a bug that took me way too long to debug. Basically, with the reservation impl
From<!> for Toverlapping withFrom<T> for T, the solver couldn't deduce from the boundTy: From<?var>thatvar = Ty. Up until now this only caused some unknown types, but with the "type annotations needed" it started becoming visible, and annoying.This is not the first time that we forget some attribute can be applied in more than one reason; perhaps we should unify handling for all
ast::Metakinds that have a path.Fixes #22263.