-
Notifications
You must be signed in to change notification settings - Fork 13.8k
-Znext-solver
instantiate predicate binder without recanonicalizing goal
#146725
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
changes to Some changes occurred to the core trait solver cc @rust-lang/initiative-trait-system-refactor |
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
-Znext-solver
instantiate predicate binder without recanonicalizing goal
This comment was marked as outdated.
This comment was marked as outdated.
@rfcbot fcp merge |
Team member @lcnr has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
@bors rollup=never |
This strengthens the leak check to match the old trait solver. The new trait solver now also instantiates higher ranked goals in the same scope as candidate selection, so the leak check in each candidate detects placeholder errors involving this higher ranked goal.
E.g. let's look at tests/ui/higher-ranked/leak-check/leak-check-in-selection-2.rs
Here proving
(): for<'a> Trait<&'a str, ?u>
viaimpl<'a> Trait<&'a str, &'a str> for ()
equates?u
with&'!a str
which results in a leak check error as?u
cannot name'a
. If this leak check error happens while considering candidates we drop the first impl and infer?u
toString
. If not, this remains ambiguous.This behavior is a bit iffy, see the FCP proposal in #119820 for more details on why this current behavior is somewhat undesirable. However, considering placeholders from higher-ranked goals for candidate selection does allow more code to compile and a lot of the code feels like it should compile. This caused us to revert the change of #119820 in #127568.
I originally expected that we can avoid breakage with the new solver differently here, e.g. by considering OR-region constraints. However, doing so is a significant change and I don't have a great idea for how that should work. Matching the old solver behavior for now should not make this cleaner approach any more difficult in the future, so let's just go with what actually allows us to stabilize the new solver for now.
This PR changing the new solver to match the behavior of the old one wrt the leak check. As the new solver is already used by default in coherence, this allows more code to compile, see
tests/ui/higher-ranked/leak-check/leak-check-in-selection-7-coherence.rs
:This behavior is quite arbitrary and not something I expect users to rely on in practice, however, it should still go through an FCP imo.
r? @BoxyUwU originally implemented by @compiler-errors in #136997. Closes rust-lang/trait-system-refactor-initiative#120.