Skip to content

Commit e649eca

Browse files
authored
Rollup merge of #126675 - oli-obk:diagnostics_opaque, r=jackh726
Change a `DefineOpaqueTypes::No` to `Yes` in diagnostics code Explanation in comments of the function. r? ```@compiler-errors``` cc #116652
2 parents cc4ace3 + 56cd301 commit e649eca

File tree

1 file changed

+5
-1
lines changed
  • compiler/rustc_hir_typeck/src/method

1 file changed

+5
-1
lines changed

compiler/rustc_hir_typeck/src/method/probe.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1357,6 +1357,8 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
13571357
traits::SelectionContext::new(self).select(&obligation)
13581358
}
13591359

1360+
/// Used for ambiguous method call error reporting. Uses probing that throws away the result internally,
1361+
/// so do not use to make a decision that may lead to a successful compilation.
13601362
fn candidate_source(&self, candidate: &Candidate<'tcx>, self_ty: Ty<'tcx>) -> CandidateSource {
13611363
match candidate.kind {
13621364
InherentImplCandidate(_) => {
@@ -1370,8 +1372,10 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
13701372
self.instantiate_binder_with_fresh_vars(self.span, infer::FnCall, trait_ref);
13711373
let (xform_self_ty, _) =
13721374
self.xform_self_ty(candidate.item, trait_ref.self_ty(), trait_ref.args);
1375+
// Guide the trait selection to show impls that have methods whose type matches
1376+
// up with the `self` parameter of the method.
13731377
let _ = self.at(&ObligationCause::dummy(), self.param_env).sup(
1374-
DefineOpaqueTypes::No,
1378+
DefineOpaqueTypes::Yes,
13751379
xform_self_ty,
13761380
self_ty,
13771381
);

0 commit comments

Comments
 (0)