Conversation
|
This PR modifies |
This comment has been minimized.
This comment has been minimized.
fd49d2a to
298dec7
Compare
This comment has been minimized.
This comment has been minimized.
0b0bd12 to
f6ce33d
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment was marked as resolved.
This comment was marked as resolved.
|
Not sure what is the status here, the PR was updated at some point, but never marked as waiting on review. |
|
If the wording changes are agreeable (which #145399 (comment) makes it sound like it might be), I can try to clean up the PR again into a mergable state. |
|
Yes, I think we can rebase and merge this. |
6890c8d to
830b1d7
Compare
|
Some changes occurred in src/tools/clippy cc @rust-lang/clippy The Miri subtree was changed cc @rust-lang/miri |
|
This PR was rebased onto a different main commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
This comment has been minimized.
This comment has been minimized.
702fbc4 to
0c612ca
Compare
This comment has been minimized.
This comment has been minimized.
Remove "failed to resolve" and use the same format we use in other resolution errors "cannot find `name`". ``` error[E0433]: cannot find `nonexistent` in `existent` --> $DIR/custom_attr_multisegment_error.rs:5:13 | LL | #[existent::nonexistent] | ^^^^^^^^^^^ could not find `nonexistent` in `existent` ```
0c612ca to
61211ba
Compare
|
@bors r+ |
Remove "failed to resolve" from the main error message and use the same format we use in other resolution errors "cannot find
name":The intent behind this is to end up with all resolve errors eventually be on the form of
A category of errors that is interest are those that involve keywords. For example:
and
For these the label provides the actual help, while the message is less informative beyond telling you "couldn't find
name".This is an off-shoot of #126810 and #128086, a subset of the intended changes there with review comments applied.
r? @petrochenkov