-
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
Remove duplicated errors for closure type mismatch #41760
Conversation
r? @eddyb (rust_highfive has picked a reviewer for you, use r? to override) |
58df6bd
to
e964329
Compare
.map_err(|e| OutputTypeParameterMismatch(expected_trait_ref, obligation_trait_ref, e)) | ||
.map_err(|e| { | ||
let self_ty = expected_trait_ref.self_ty(); | ||
match (&self_ty.sty, &e) { |
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.
Can you please just compare the # of parameters in the fn sig vs. the # of parameters in the obligation (that's obligation.predicate.skip_binder().subst_at(1)
)?
@@ -523,6 +524,11 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> { | |||
{ | |||
let span = obligation.cause.span; | |||
|
|||
if !self.reported_selection_errors.borrow_mut().insert((span, error.clone())) { |
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 sounds overly excessive. Outside of closures all trait errors are Unimplemented
, so you are only showing 1 error per span.
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.
Yeah, it was surprising to me how many tests were affected by this. I'll think of a different way to deduplicate these errors...
Originally I was trying to get to the point where only one of FnMut
and FnOnce
were required, which feels like the correct way to accomplish this, but could not find where to tackle that (even pouring through the code and with full debugging output on :-/ ).
Superseded by #41840. |
Follow up to #41488.