-
Notifications
You must be signed in to change notification settings - Fork 14k
Introduce const-qualified paths (approach: instantiate_with_host_effect) #120028
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
Closed
Conversation
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
Collaborator
|
The job Click to see the possible cause of the failure (guessed by this bot) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
F-const_trait_impl
`#![feature(const_trait_impl)]`
F-effects
`#![feature(effects)]`
S-waiting-on-team
DEPRECATED: Use the team-based variants `S-waiting-on-t-lang`, `S-waiting-on-t-compiler`, ...
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
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.
This introduces
<Type as ~const Trait>::AssocTyand<Type as const Trait>::AssocTyunder featureconst_trait_implas discussed.In this approach, the host effect param still gets synthesized at the very end of the generic parameter list requiring us to special-case host effect args when instantiating generic parameter defaults since rustc isn't equipped to handle forward references inside defaults (hence E0128) which can now occur:
I've created
ty::EarlyBinder::instantiate_with_host_effect(tcx, args, host_effect)which is basicallyty::EarlyBinder::instantiatebut it can deal with forward references to host effect params.CON: Requires a lot of code to re-implement
instantiateand all users oftype_of(type_param)/const_param_default(const_param)now need to be aware that they should useinstantiate_with_host_effectinstead ofinstantiate(which could theoretically be mitigated by introducing a new wrapper typety::EarlyBinderWithForwardRefs).We probably want to take approach “reorder”, this PR solely exists because it was my initial approach and because it might be helpful for others to understand the problem.
Check out the alternative approach “reorder”: #120029.
Waiting on project-const-traits for a decision on which approach to take.
r? ghost