-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Fix #73948 #74292
Fix #73948 #74292
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
Resolved the merge conflicts :) |
Ideally the cannot find crate error wouldn't be fatal so that resolve would emit an ambiguity error. Maybe @petrochenkov has some ideas on this. |
…er `meta` being used
Rebased @matthewjasper I'm not quite sure I understand, is that the error instantiated on |
Meta: it's preferable to give human-readable titles to PRs, i.e. "Do something specific with things A and B" rather than "Fix #NNNN". |
More radical solution - #75802. |
@petrochenkov Should I close this in favour of #75802 ? :) |
☔ The latest upstream changes (presumably #74862) made this pull request unmergeable. Please resolve the merge conflicts. |
Yes, let's close for now. |
Closes #73948 by adding a note that
meta
is a reserved name and suggesting the use of thecrate::
prefix to reduce ambiguity.