-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Confusing error message with associated type bounds doesn't hint to possible typo #91211
Comments
I'd love to work on this if nobody else is interested in it. @estebank, you're the expert on diagnostics, so you might know the best advice to do this fix cleanly. edit: (re the previous thoughts I had typed up, I was wrong haha) I'll try to see where I need to add in the check that currently denies bindings in generics for types. |
@compiler-errors you'll end up having to touch at least two different places (maybe three) to handle this correctly. You might want to silence the first error that happens on It also looks like we are forbidding assoc types in two places (ast and typeck). If the overlap is 100% for both, then we could have only one (and turn the other into a |
Thanks for the advice. I'll take a look at it when I get back to my rustc-building computer in a few days :) @rustbot claim |
So I've hit some complications here.
Maybe it's worthwhile to do this at the ast level instead or during hir where we have path resolution + a more faithful representation of the input code. But I don't know if we currently disambiguate positions where assoc constraints are (dis)allowed at those levels. Not sure if you have any thoughts @estebank. Otherwise I might let this issue go so I'm not holding onto something somebody else wants to take a stab at. |
And option would be to modify the AST to carry extra information, and for that desugaring I think you might be able to carry information in the |
This could probably be marked as closed by #92788 ? |
@JustusFluegel the current output is the following, so I wouldn't consider this fixed:
|
Ok my bad 👍 |
Given the following code:
playground
The current output is:
Ideally the first error should have a
hint
thatAssoc
is also the name of an associated type onT
and point to the single colon:
with a suggestion to change it to a double colon to access the associated type.Output is identical across stable 1.56.1, 1.57.0-beta.7, and 1.58 nightly 2021-11-24
The text was updated successfully, but these errors were encountered: