backport to 0.15: remove reliance on a trait solver bug#19360
Merged
mockersf merged 1 commit intobevyengine:release-0.15.3from May 25, 2025
Merged
backport to 0.15: remove reliance on a trait solver bug#19360mockersf merged 1 commit intobevyengine:release-0.15.3from
mockersf merged 1 commit intobevyengine:release-0.15.3from
Conversation
the parameter `In` of `call_inner` is completely unconstrained by its arguments and return type. We are only able to infer it by assuming that the only associated type equal to `In::Param<'_>` is `In::Param<'_>` itself. It could just as well be some other associated type which only normalizes to `In::Param<'_>`. cc rust-lang/trait-system-refactor-initiative#168
mockersf
approved these changes
May 25, 2025
Member
|
CI failures due to new lints in rust |
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.
A backport of #18840 to version 0.15.3. I was unsure whether I should also update the versions of all crates. Looking at previous backports this was not done.
The code which relies on the old solver behavior was introduced in #15184 which is from version 0.15. So this is the only version which needs a backport.
cc @mockersf