-
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
Improve suggestions for NonZeroT
<- T
coercion error
#99438
Conversation
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
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.
Thanks @WaffleLapkin for an interesting and useful diagnostics improvement as always. This looks good as is, but I had an idea of generalizing both parts of the PR. Let me know your thoughts.
if !sole_field.did.is_local() | ||
&& !sole_field.vis.is_accessible_from( | ||
self.tcx.parent_module(expr.hir_id).to_def_id(), | ||
self.tcx, | ||
) |
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.
if !sole_field.did.is_local() | |
&& !sole_field.vis.is_accessible_from( | |
self.tcx.parent_module(expr.hir_id).to_def_id(), | |
self.tcx, | |
) | |
if !sole_field.vis.is_accessible_from( | |
self.body_id.owner.to_def_id(), | |
self.tcx, | |
) |
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.
No need to restrict to only foreign def id, and we can get a more accurate def id from self.body_id.owner.to_def_id()
i think.
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.
Restriction to foreign def ids is deliberate, see the test:
rust/src/test/ui/mismatched_types/wrap-suggestion-privacy.rs
Lines 10 to 11 in da2752e
// Suggest wrapping expression because type is local | |
// and its privacy can be easily changed |
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.
Hm, I guess so. I think that giving an incorrect suggestion isn't as useful, especially in a large codebase, but can you at least note that in a comment?
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.
Specifically " its privacy can be easily changed " as the justification would be nice to note
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.
Not sure how to present it in a good way, but I've tried 5bd88df
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.
haha I meant a comment in the source code, but this works too!
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.
lmao
it's bed time
- Use `expr.hir_id.owner` instead of `self.tcx.parent_module(expr.hir_id)` - Use `.type_at()` instead of `.first()` + `.expect_ty()` - Use single `.find()` with `&&` condition Co-authored-by: Michael Goulet <michael@errs.io>
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 looks good for now. It can be tweaked later if anyone complains about it.
r=me once CI turns green @bors delegate+ |
✌️ @WaffleLapkin can now approve this pull request |
@bors r=compiler-errors |
…askrgr Rollup of 9 pull requests Successful merges: - rust-lang#98028 (Add E0790 as more specific variant of E0283) - rust-lang#99384 (use body's param-env when checking if type needs drop) - rust-lang#99401 (Avoid `Symbol` to `&str` conversions) - rust-lang#99419 (Stabilize `core::task::ready!`) - rust-lang#99435 (Revert "Stabilize $$ in Rust 1.63.0") - rust-lang#99438 (Improve suggestions for `NonZeroT` <- `T` coercion error) - rust-lang#99441 (Update mdbook) - rust-lang#99453 (:arrow_up: rust-analyzer) - rust-lang#99457 (use `par_for_each_in` in `par_body_owners` and `collect_crate_mono_items`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Currently, when encountering a type mismatch error with
NonZeroT
andT
(for exampleNonZeroU8
andu8
) we errorneusly suggest wrapping expression inNonZeroT
:I've removed this suggestion and added suggestions to call
new
(forOption<NonZeroT>
<-T
case) ornew
andunwrap
(forNonZeroT
<-T
case):r? @compiler-errors