-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Update non-local-defns regarding parameterized traits and types #3581
base: master
Are you sure you want to change the base?
Conversation
Agree that this is under specified. I am not sure that spelling this out explicitly in the RFC text works --- its not clear whether the specified rules have any loopholes. My current belief is that the rule we want here is exactly equivalent to coherence. So the RFC should say something along to the effect of "function bodies are treated as downstream crates for the purposes of trait checking and type inference". As this (most excellent) example by QuineDot demonstrates it is important to restrict both:
|
Ah, I missed this extra bit of context: rust-lang/rust#121621, where it is suggested that we want more restritive rules than coherence here specifically to avoid fixind point two from above. |
@tmandry Is this something you can review (or direct to someone who can)? I can't tell if this is changing the RFC in a meaningful way, or just clarifying it. If it is a change from before, it would probably be best to start a new RFC. |
From a quick look this is in line with the original RFC, and if @joshtriplett is willing to consider it a "friendly amendment" I think it can be merged. |
fn main() { | ||
Foo.method(); | ||
} | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer to leave this example out of the motivation section. Could you move it to the explanation section?
Made a few editorial changes, and made one comment about moving the example out of the motivation section. With that change made, LGTM; no objections. |
Isn't this going against T-types solution ? (which is being implemented in rust-lang/rust#122747, @lcnr) |
I'd personally just keep the RFC as "we lint if the existance of the impl is observable outside of its containing item", I don't think there is much value in explaining the exact algorithm used for that in an RFC. I also thought we generally expect the reference/guidelevel explanation of RFCs to get out of date and do not bother updating them, instead referring to the reference/docs. The idea implemented in rust-lang/rust#122747 is as follows: Lint impls inside of bodies unless:
This should mean that in all cases where the local impl may apply outside of the body, we already fail with ambiguity even when ignoring the impl |
@lcnr I'm deferring entirely to the types team here for whether you want to make changes/suggestions to this or close it. It'd be nice if the rules we have are documented somewhere. Updating the RFC is one possible option; others could work as well. |
My only feelings is that it is often hard to tell the status and intended behaviour of in-development features. Whether or not updating RFCs is appropriate I don't know... and now we're getting off-topic. |
The existing RFC does not give sufficient attention to parametrized types and traits.