-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Use structured suggestions for missing associated items #65752
Conversation
r? @eddyb (rust_highfive has picked a reviewer for you, use r? to override) |
r? @Centril Looking at the changes one commit at a time will be easier to follow. |
This comment has been minimized.
This comment has been minimized.
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.
This is just some initial feedback; I'll look more in-depth later.
This comment has been minimized.
This comment has been minimized.
f73eb2c
to
ab187ba
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
r=me with two remaining nits addressed. |
This comment has been minimized.
This comment has been minimized.
@bors r=Centril |
📌 Commit a12a32a has been approved by |
⌛ Testing commit a12a32a with merge 67e714a18f52bd750356eb37155ed35134022025... |
Use structured suggestions for missing associated items When encountering an `impl` that is missing associated items required by its `trait`, use structured suggestions at an appropriate place in the `impl`.
@bors retry rolled up. |
Rollup of 5 pull requests Successful merges: - #59789 (Revert two unapproved changes to rustc_typeck.) - #65752 (Use structured suggestions for missing associated items) - #65884 (syntax: ABI-oblivious grammar) - #65974 (A scheme for more macro-matcher friendly pre-expansion gating) - #66017 (Add future incompatibility lint for `array.into_iter()`) Failed merges: - #66056 (rustc_metadata: Some reorganization of the module structure) r? @ghost
When encountering an
impl
that is missing associated items required by itstrait
, use structured suggestions at an appropriate place in theimpl
.