1use rustc_errors::{Applicability, Diag, MultiSpan, listify};
2use rustc_hir as hir;
3use rustc_hir::def::Res;
4use rustc_hir::intravisit::Visitor;
5use rustc_infer::infer::DefineOpaqueTypes;
6use rustc_middle::bug;
7use rustc_middle::ty::adjustment::AllowTwoPhase;
8use rustc_middle::ty::error::{ExpectedFound, TypeError};
9use rustc_middle::ty::print::with_no_trimmed_paths;
10use rustc_middle::ty::{self, AssocItem, BottomUpFolder, Ty, TypeFoldable, TypeVisitableExt};
11use rustc_span::{DUMMY_SP, Ident, Span, sym};
12use rustc_trait_selection::infer::InferCtxtExt;
13use rustc_trait_selection::traits::ObligationCause;
14use tracing::instrument;
15
16use super::method::probe;
17use crate::FnCtxt;
18
19impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
20 pub(crate) fn emit_type_mismatch_suggestions(
21 &self,
22 err: &mut Diag<'_>,
23 expr: &hir::Expr<'tcx>,
24 expr_ty: Ty<'tcx>,
25 expected: Ty<'tcx>,
26 expected_ty_expr: Option<&'tcx hir::Expr<'tcx>>,
27 error: Option<TypeError<'tcx>>,
28 ) {
29 if expr_ty == expected {
30 return;
31 }
32 self.annotate_alternative_method_deref(err, expr, error);
33 self.explain_self_literal(err, expr, expected, expr_ty);
34
35 let suggested = self.suggest_missing_parentheses(err, expr)
37 || self.suggest_missing_unwrap_expect(err, expr, expected, expr_ty)
38 || self.suggest_remove_last_method_call(err, expr, expected)
39 || self.suggest_associated_const(err, expr, expected)
40 || self.suggest_semicolon_in_repeat_expr(err, expr, expr_ty)
41 || self.suggest_deref_ref_or_into(err, expr, expected, expr_ty, expected_ty_expr)
42 || self.suggest_option_to_bool(err, expr, expr_ty, expected)
43 || self.suggest_compatible_variants(err, expr, expected, expr_ty)
44 || self.suggest_non_zero_new_unwrap(err, expr, expected, expr_ty)
45 || self.suggest_calling_boxed_future_when_appropriate(err, expr, expected, expr_ty)
46 || self.suggest_no_capture_closure(err, expected, expr_ty)
47 || self.suggest_boxing_when_appropriate(
48 err,
49 expr.peel_blocks().span,
50 expr.hir_id,
51 expected,
52 expr_ty,
53 )
54 || self.suggest_block_to_brackets_peeling_refs(err, expr, expr_ty, expected)
55 || self.suggest_copied_cloned_or_as_ref(err, expr, expr_ty, expected)
56 || self.suggest_clone_for_ref(err, expr, expr_ty, expected)
57 || self.suggest_into(err, expr, expr_ty, expected)
58 || self.suggest_floating_point_literal(err, expr, expected)
59 || self.suggest_null_ptr_for_literal_zero_given_to_ptr_arg(err, expr, expected)
60 || self.suggest_coercing_result_via_try_operator(err, expr, expected, expr_ty)
61 || self.suggest_returning_value_after_loop(err, expr, expected);
62
63 if !suggested {
64 self.note_source_of_type_mismatch_constraint(
65 err,
66 expr,
67 TypeMismatchSource::Ty(expected),
68 );
69 }
70 }
71
72 pub(crate) fn emit_coerce_suggestions(
73 &self,
74 err: &mut Diag<'_>,
75 expr: &hir::Expr<'tcx>,
76 expr_ty: Ty<'tcx>,
77 expected: Ty<'tcx>,
78 expected_ty_expr: Option<&'tcx hir::Expr<'tcx>>,
79 error: Option<TypeError<'tcx>>,
80 ) {
81 if expr_ty == expected {
82 return;
83 }
84
85 self.annotate_expected_due_to_let_ty(err, expr, error);
86 self.annotate_loop_expected_due_to_inference(err, expr, error);
87 if self.annotate_mut_binding_to_immutable_binding(err, expr, expr_ty, expected, error) {
88 return;
89 }
90
91 if #[allow(non_exhaustive_omitted_patterns)] match error {
Some(TypeError::RegionsInsufficientlyPolymorphic(..)) => true,
_ => false,
}matches!(error, Some(TypeError::RegionsInsufficientlyPolymorphic(..))) {
95 return;
96 }
97
98 if self.is_destruct_assignment_desugaring(expr) {
99 return;
100 }
101 self.emit_type_mismatch_suggestions(err, expr, expr_ty, expected, expected_ty_expr, error);
102 self.note_type_is_not_clone(err, expected, expr_ty, expr);
103 self.note_internal_mutation_in_method(err, expr, Some(expected), expr_ty);
104 self.suggest_method_call_on_range_literal(err, expr, expr_ty, expected);
105 self.suggest_return_binding_for_missing_tail_expr(err, expr, expr_ty, expected);
106 self.note_wrong_return_ty_due_to_generic_arg(err, expr, expr_ty);
107 }
108
109 fn adjust_expr_for_assert_eq_macro(
112 &self,
113 found_expr: &mut &'tcx hir::Expr<'tcx>,
114 expected_expr: &mut Option<&'tcx hir::Expr<'tcx>>,
115 ) {
116 let Some(expected_expr) = expected_expr else {
117 return;
118 };
119
120 if !found_expr.span.eq_ctxt(expected_expr.span) {
121 return;
122 }
123
124 if !found_expr
125 .span
126 .ctxt()
127 .outer_expn_data()
128 .macro_def_id
129 .is_some_and(|def_id| self.tcx.is_diagnostic_item(sym::assert_eq_macro, def_id))
130 {
131 return;
132 }
133
134 let hir::ExprKind::Unary(
135 hir::UnOp::Deref,
136 hir::Expr { kind: hir::ExprKind::Path(found_path), .. },
137 ) = found_expr.kind
138 else {
139 return;
140 };
141 let hir::ExprKind::Unary(
142 hir::UnOp::Deref,
143 hir::Expr { kind: hir::ExprKind::Path(expected_path), .. },
144 ) = expected_expr.kind
145 else {
146 return;
147 };
148
149 for (path, name, idx, var) in [
150 (expected_path, "left_val", 0, expected_expr),
151 (found_path, "right_val", 1, found_expr),
152 ] {
153 if let hir::QPath::Resolved(_, path) = path
154 && let [segment] = path.segments
155 && segment.ident.name.as_str() == name
156 && let Res::Local(hir_id) = path.res
157 && let Some((_, hir::Node::Expr(match_expr))) =
158 self.tcx.hir_parent_iter(hir_id).nth(2)
159 && let hir::ExprKind::Match(scrutinee, _, _) = match_expr.kind
160 && let hir::ExprKind::Tup(exprs) = scrutinee.kind
161 && let hir::ExprKind::AddrOf(_, _, macro_arg) = exprs[idx].kind
162 {
163 *var = macro_arg;
164 }
165 }
166 }
167
168 pub(crate) fn demand_suptype(&self, sp: Span, expected: Ty<'tcx>, actual: Ty<'tcx>) {
171 if let Err(e) = self.demand_suptype_diag(sp, expected, actual) {
172 e.emit();
173 }
174 }
175
176 pub(crate) fn demand_suptype_diag(
177 &'a self,
178 sp: Span,
179 expected: Ty<'tcx>,
180 actual: Ty<'tcx>,
181 ) -> Result<(), Diag<'a>> {
182 self.demand_suptype_with_origin(&self.misc(sp), expected, actual)
183 }
184
185 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("demand_suptype_with_origin",
"rustc_hir_typeck::demand", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/demand.rs"),
::tracing_core::__macro_support::Option::Some(185u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::demand"),
::tracing_core::field::FieldSet::new(&["cause", "expected",
"actual"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&expected)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&actual)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: Result<(), Diag<'a>> = loop {};
return __tracing_attr_fake_return;
}
{
self.at(cause,
self.param_env).sup(DefineOpaqueTypes::Yes, expected,
actual).map(|infer_ok|
self.register_infer_ok_obligations(infer_ok)).map_err(|e|
{
self.err_ctxt().report_mismatched_types(cause,
self.param_env, expected, actual, e)
})
}
}
}#[instrument(skip(self), level = "debug")]
186 pub(crate) fn demand_suptype_with_origin(
187 &'a self,
188 cause: &ObligationCause<'tcx>,
189 expected: Ty<'tcx>,
190 actual: Ty<'tcx>,
191 ) -> Result<(), Diag<'a>> {
192 self.at(cause, self.param_env)
193 .sup(DefineOpaqueTypes::Yes, expected, actual)
194 .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
195 .map_err(|e| {
196 self.err_ctxt().report_mismatched_types(cause, self.param_env, expected, actual, e)
197 })
198 }
199
200 pub(crate) fn demand_eqtype(&self, sp: Span, expected: Ty<'tcx>, actual: Ty<'tcx>) {
201 if let Err(err) = self.demand_eqtype_diag(sp, expected, actual) {
202 err.emit();
203 }
204 }
205
206 pub(crate) fn demand_eqtype_diag(
207 &'a self,
208 sp: Span,
209 expected: Ty<'tcx>,
210 actual: Ty<'tcx>,
211 ) -> Result<(), Diag<'a>> {
212 self.demand_eqtype_with_origin(&self.misc(sp), expected, actual)
213 }
214
215 pub(crate) fn demand_eqtype_with_origin(
216 &'a self,
217 cause: &ObligationCause<'tcx>,
218 expected: Ty<'tcx>,
219 actual: Ty<'tcx>,
220 ) -> Result<(), Diag<'a>> {
221 self.at(cause, self.param_env)
222 .eq(DefineOpaqueTypes::Yes, expected, actual)
223 .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
224 .map_err(|e| {
225 self.err_ctxt().report_mismatched_types(cause, self.param_env, expected, actual, e)
226 })
227 }
228
229 pub(crate) fn demand_coerce(
230 &self,
231 expr: &'tcx hir::Expr<'tcx>,
232 checked_ty: Ty<'tcx>,
233 expected: Ty<'tcx>,
234 expected_ty_expr: Option<&'tcx hir::Expr<'tcx>>,
235 allow_two_phase: AllowTwoPhase,
236 ) -> Ty<'tcx> {
237 match self.demand_coerce_diag(expr, checked_ty, expected, expected_ty_expr, allow_two_phase)
238 {
239 Ok(ty) => ty,
240 Err(err) => {
241 err.emit();
242 expected
246 }
247 }
248 }
249
250 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("demand_coerce_diag",
"rustc_hir_typeck::demand", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/demand.rs"),
::tracing_core::__macro_support::Option::Some(254u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::demand"),
::tracing_core::field::FieldSet::new(&["checked_ty",
"expected"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&checked_ty)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&expected)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: Result<Ty<'tcx>, Diag<'a>> =
loop {};
return __tracing_attr_fake_return;
}
{
let expected =
if self.next_trait_solver() {
expected
} else { self.resolve_vars_with_obligations(expected) };
let e =
match self.coerce(expr, checked_ty, expected, allow_two_phase,
None) {
Ok(ty) => return Ok(ty),
Err(e) => e,
};
self.adjust_expr_for_assert_eq_macro(&mut expr,
&mut expected_ty_expr);
self.set_tainted_by_errors(self.dcx().span_delayed_bug(expr.span,
"`TypeError` when attempting coercion but no error emitted"));
let expr = expr.peel_drop_temps();
let cause = self.misc(expr.span);
let expr_ty = self.resolve_vars_if_possible(checked_ty);
let mut err =
self.err_ctxt().report_mismatched_types(&cause,
self.param_env, expected, expr_ty, e);
self.emit_coerce_suggestions(&mut err, expr, expr_ty, expected,
expected_ty_expr, Some(e));
Err(err)
}
}
}#[instrument(level = "debug", skip(self, expr, expected_ty_expr, allow_two_phase))]
255 pub(crate) fn demand_coerce_diag(
256 &'a self,
257 mut expr: &'tcx hir::Expr<'tcx>,
258 checked_ty: Ty<'tcx>,
259 expected: Ty<'tcx>,
260 mut expected_ty_expr: Option<&'tcx hir::Expr<'tcx>>,
261 allow_two_phase: AllowTwoPhase,
262 ) -> Result<Ty<'tcx>, Diag<'a>> {
263 let expected = if self.next_trait_solver() {
264 expected
265 } else {
266 self.resolve_vars_with_obligations(expected)
267 };
268
269 let e = match self.coerce(expr, checked_ty, expected, allow_two_phase, None) {
270 Ok(ty) => return Ok(ty),
271 Err(e) => e,
272 };
273
274 self.adjust_expr_for_assert_eq_macro(&mut expr, &mut expected_ty_expr);
275
276 self.set_tainted_by_errors(self.dcx().span_delayed_bug(
277 expr.span,
278 "`TypeError` when attempting coercion but no error emitted",
279 ));
280 let expr = expr.peel_drop_temps();
281 let cause = self.misc(expr.span);
282 let expr_ty = self.resolve_vars_if_possible(checked_ty);
283 let mut err =
284 self.err_ctxt().report_mismatched_types(&cause, self.param_env, expected, expr_ty, e);
285
286 self.emit_coerce_suggestions(&mut err, expr, expr_ty, expected, expected_ty_expr, Some(e));
287
288 Err(err)
289 }
290
291 pub(crate) fn note_source_of_type_mismatch_constraint(
294 &self,
295 err: &mut Diag<'_>,
296 expr: &hir::Expr<'_>,
297 source: TypeMismatchSource<'tcx>,
298 ) -> bool {
299 let hir::ExprKind::Path(hir::QPath::Resolved(None, p)) = expr.kind else {
300 return false;
301 };
302 let [hir::PathSegment { ident, args: None, .. }] = p.segments else {
303 return false;
304 };
305 let hir::def::Res::Local(local_hir_id) = p.res else {
306 return false;
307 };
308 let hir::Node::Pat(pat) = self.tcx.hir_node(local_hir_id) else {
309 return false;
310 };
311 let (init_ty_hir_id, init) = match self.tcx.parent_hir_node(pat.hir_id) {
312 hir::Node::LetStmt(hir::LetStmt { ty: Some(ty), init, .. }) => (ty.hir_id, *init),
313 hir::Node::LetStmt(hir::LetStmt { init: Some(init), .. }) => (init.hir_id, Some(*init)),
314 _ => return false,
315 };
316 let Some(init_ty) = self.node_ty_opt(init_ty_hir_id) else {
317 return false;
318 };
319
320 struct FindExprs<'tcx> {
322 hir_id: hir::HirId,
323 uses: Vec<&'tcx hir::Expr<'tcx>>,
324 }
325 impl<'tcx> Visitor<'tcx> for FindExprs<'tcx> {
326 fn visit_expr(&mut self, ex: &'tcx hir::Expr<'tcx>) {
327 if let hir::ExprKind::Path(hir::QPath::Resolved(None, path)) = ex.kind
328 && let hir::def::Res::Local(hir_id) = path.res
329 && hir_id == self.hir_id
330 {
331 self.uses.push(ex);
332 }
333 hir::intravisit::walk_expr(self, ex);
334 }
335 }
336
337 let mut expr_finder = FindExprs { hir_id: local_hir_id, uses: init.into_iter().collect() };
338 let body = self.tcx.hir_body_owned_by(self.body_id);
339 expr_finder.visit_expr(body.value);
340
341 let mut fudger = BottomUpFolder {
343 tcx: self.tcx,
344 ty_op: |ty| {
345 if let ty::Infer(infer) = ty.kind() {
346 match infer {
347 ty::TyVar(_) => self.next_ty_var(DUMMY_SP),
348 ty::IntVar(_) => self.next_int_var(),
349 ty::FloatVar(_) => self.next_float_var(),
350 ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_) => {
351 ::rustc_middle::util::bug::bug_fmt(format_args!("unexpected fresh ty outside of the trait solver"))bug!("unexpected fresh ty outside of the trait solver")
352 }
353 }
354 } else {
355 ty
356 }
357 },
358 lt_op: |_| self.tcx.lifetimes.re_erased,
359 ct_op: |ct| {
360 if let ty::ConstKind::Infer(_) = ct.kind() {
361 self.next_const_var(DUMMY_SP)
362 } else {
363 ct
364 }
365 },
366 };
367
368 let expected_ty = match source {
369 TypeMismatchSource::Ty(expected_ty) => expected_ty,
370 TypeMismatchSource::Arg { call_expr, incompatible_arg: idx } => {
377 let hir::ExprKind::MethodCall(segment, _, args, _) = call_expr.kind else {
378 return false;
379 };
380 let Some(arg_ty) = self.node_ty_opt(args[idx].hir_id) else {
381 return false;
382 };
383 let possible_rcvr_ty = expr_finder.uses.iter().rev().find_map(|binding| {
384 let possible_rcvr_ty = self.node_ty_opt(binding.hir_id)?;
385 if possible_rcvr_ty.is_ty_var() {
386 return None;
387 }
388 let possible_rcvr_ty = possible_rcvr_ty.fold_with(&mut fudger);
390 let method = self
391 .lookup_method_for_diagnostic(
392 possible_rcvr_ty,
393 segment,
394 DUMMY_SP,
395 call_expr,
396 binding,
397 )
398 .ok()?;
399 if Some(method.def_id)
401 != self.typeck_results.borrow().type_dependent_def_id(call_expr.hir_id)
402 {
403 return None;
404 }
405 let _ = self
409 .at(&ObligationCause::dummy(), self.param_env)
410 .eq(DefineOpaqueTypes::Yes, method.sig.inputs()[idx + 1], arg_ty)
411 .ok()?;
412 self.select_obligations_where_possible(|errs| {
413 errs.clear();
415 });
416 Some(self.resolve_vars_if_possible(possible_rcvr_ty))
417 });
418 let Some(rcvr_ty) = possible_rcvr_ty else { return false };
419 rcvr_ty
420 }
421 };
422
423 if !self.can_eq(self.param_env, expected_ty, init_ty.fold_with(&mut fudger)) {
426 return false;
427 }
428
429 for window in expr_finder.uses.windows(2) {
430 let [binding, next_usage] = *window else {
434 continue;
435 };
436
437 if binding.hir_id == expr.hir_id {
439 break;
440 }
441
442 let Some(next_use_ty) = self.node_ty_opt(next_usage.hir_id) else {
443 continue;
444 };
445
446 if self.can_eq(self.param_env, expected_ty, next_use_ty.fold_with(&mut fudger)) {
449 continue;
450 }
451
452 if let hir::Node::Expr(parent_expr) = self.tcx.parent_hir_node(binding.hir_id)
453 && let hir::ExprKind::MethodCall(segment, rcvr, args, _) = parent_expr.kind
454 && rcvr.hir_id == binding.hir_id
455 {
456 let Some(rcvr_ty) = self.node_ty_opt(rcvr.hir_id) else {
460 continue;
461 };
462 let rcvr_ty = rcvr_ty.fold_with(&mut fudger);
463 let Ok(method) = self.lookup_method_for_diagnostic(
464 rcvr_ty,
465 segment,
466 DUMMY_SP,
467 parent_expr,
468 rcvr,
469 ) else {
470 continue;
471 };
472 if Some(method.def_id)
474 != self.typeck_results.borrow().type_dependent_def_id(parent_expr.hir_id)
475 {
476 continue;
477 }
478
479 let ideal_rcvr_ty = rcvr_ty.fold_with(&mut fudger);
480 let ideal_method = self
481 .lookup_method_for_diagnostic(
482 ideal_rcvr_ty,
483 segment,
484 DUMMY_SP,
485 parent_expr,
486 rcvr,
487 )
488 .ok()
489 .and_then(|method| {
490 let _ = self
491 .at(&ObligationCause::dummy(), self.param_env)
492 .eq(DefineOpaqueTypes::Yes, ideal_rcvr_ty, expected_ty)
493 .ok()?;
494 Some(method)
495 });
496
497 for (idx, (expected_arg_ty, arg_expr)) in
500 std::iter::zip(&method.sig.inputs()[1..], args).enumerate()
501 {
502 let Some(arg_ty) = self.node_ty_opt(arg_expr.hir_id) else {
503 continue;
504 };
505 let arg_ty = arg_ty.fold_with(&mut fudger);
506 let _ =
507 self.coerce(arg_expr, arg_ty, *expected_arg_ty, AllowTwoPhase::No, None);
508 self.select_obligations_where_possible(|errs| {
509 errs.clear();
511 });
512 if self.can_eq(self.param_env, rcvr_ty, expected_ty) {
516 continue;
517 }
518 err.span_label(arg_expr.span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this argument has type `{0}`...",
arg_ty))
})format!("this argument has type `{arg_ty}`..."));
519 err.span_label(
520 binding.span,
521 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("... which causes `{0}` to have type `{1}`",
ident, next_use_ty))
})format!("... which causes `{ident}` to have type `{next_use_ty}`"),
522 );
523 if #[allow(non_exhaustive_omitted_patterns)] match source {
TypeMismatchSource::Ty(_) => true,
_ => false,
}matches!(source, TypeMismatchSource::Ty(_))
532 && let Some(ideal_method) = ideal_method
533 && Some(ideal_method.def_id)
534 == self
535 .typeck_results
536 .borrow()
537 .type_dependent_def_id(parent_expr.hir_id)
538 && let ideal_arg_ty =
539 self.resolve_vars_if_possible(ideal_method.sig.inputs()[idx + 1])
540 && !ideal_arg_ty.has_non_region_infer()
541 {
542 self.emit_type_mismatch_suggestions(
543 err,
544 arg_expr,
545 arg_ty,
546 ideal_arg_ty,
547 None,
548 None,
549 );
550 }
551 return true;
552 }
553 }
554 err.span_label(
555 binding.span,
556 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("here the type of `{0}` is inferred to be `{1}`",
ident, next_use_ty))
})format!("here the type of `{ident}` is inferred to be `{next_use_ty}`"),
557 );
558 return true;
559 }
560
561 false
563 }
564
565 pub(crate) fn annotate_loop_expected_due_to_inference(
568 &self,
569 err: &mut Diag<'_>,
570 expr: &hir::Expr<'_>,
571 error: Option<TypeError<'tcx>>,
572 ) {
573 let Some(TypeError::Sorts(ExpectedFound { expected, .. })) = error else {
574 return;
575 };
576 let mut parent_id = self.tcx.parent_hir_id(expr.hir_id);
577 let mut parent;
578 'outer: loop {
579 let (hir::Node::Stmt(&hir::Stmt { kind: hir::StmtKind::Semi(p), .. })
581 | hir::Node::Block(&hir::Block { expr: Some(p), .. })
582 | hir::Node::Expr(p)) = self.tcx.hir_node(parent_id)
583 else {
584 break;
585 };
586 parent = p;
587 parent_id = self.tcx.parent_hir_id(parent_id);
588 let hir::ExprKind::Break(destination, _) = parent.kind else {
589 continue;
590 };
591 let mut parent_id = parent_id;
592 let mut direct = false;
593 loop {
594 let parent = match self.tcx.hir_node(parent_id) {
596 hir::Node::Expr(parent) => {
597 parent_id = self.tcx.parent_hir_id(parent.hir_id);
598 parent
599 }
600 hir::Node::Stmt(hir::Stmt {
601 hir_id,
602 kind: hir::StmtKind::Semi(parent) | hir::StmtKind::Expr(parent),
603 ..
604 }) => {
605 parent_id = self.tcx.parent_hir_id(*hir_id);
606 parent
607 }
608 hir::Node::Stmt(hir::Stmt { hir_id, kind: hir::StmtKind::Let(_), .. }) => {
609 parent_id = self.tcx.parent_hir_id(*hir_id);
610 parent
611 }
612 hir::Node::LetStmt(hir::LetStmt { hir_id, .. }) => {
613 parent_id = self.tcx.parent_hir_id(*hir_id);
614 parent
615 }
616 hir::Node::Block(_) => {
617 parent_id = self.tcx.parent_hir_id(parent_id);
618 parent
619 }
620 _ => break,
621 };
622 if let hir::ExprKind::Loop(..) = parent.kind {
623 direct = !direct;
626 }
627 if let hir::ExprKind::Loop(block, label, _, span) = parent.kind
628 && (destination.label == label || direct)
629 {
630 if let Some((reason_span, message)) =
631 self.maybe_get_coercion_reason(parent_id, parent.span)
632 {
633 err.span_label(reason_span, message);
634 err.span_label(
635 span,
636 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this loop is expected to be of type `{0}`",
expected))
})format!("this loop is expected to be of type `{expected}`"),
637 );
638 break 'outer;
639 } else {
640 struct FindBreaks<'tcx> {
643 label: Option<rustc_ast::Label>,
644 uses: Vec<&'tcx hir::Expr<'tcx>>,
645 nest_depth: usize,
646 }
647 impl<'tcx> Visitor<'tcx> for FindBreaks<'tcx> {
648 fn visit_expr(&mut self, ex: &'tcx hir::Expr<'tcx>) {
649 let nest_depth = self.nest_depth;
650 if let hir::ExprKind::Loop(_, label, _, _) = ex.kind {
651 if label == self.label {
652 return;
654 }
655 self.nest_depth += 1;
656 }
657 if let hir::ExprKind::Break(destination, _) = ex.kind
658 && (self.label == destination.label
659 || destination.label.is_none() && self.nest_depth == 0)
661 {
662 self.uses.push(ex);
663 }
664 hir::intravisit::walk_expr(self, ex);
665 self.nest_depth = nest_depth;
666 }
667 }
668 let mut expr_finder = FindBreaks { label, uses: ::alloc::vec::Vec::new()vec![], nest_depth: 0 };
669 expr_finder.visit_block(block);
670 let mut exit = false;
671 for ex in expr_finder.uses {
672 let hir::ExprKind::Break(_, val) = ex.kind else {
673 continue;
674 };
675 let ty = match val {
676 Some(val) => {
677 match self.typeck_results.borrow().expr_ty_adjusted_opt(val) {
678 None => continue,
679 Some(ty) => ty,
680 }
681 }
682 None => self.tcx.types.unit,
683 };
684 if self.can_eq(self.param_env, ty, expected) {
685 err.span_label(ex.span, "expected because of this `break`");
686 exit = true;
687 }
688 }
689 if exit {
690 break 'outer;
691 }
692 }
693 }
694 }
695 }
696 }
697
698 fn annotate_expected_due_to_let_ty(
699 &self,
700 err: &mut Diag<'_>,
701 expr: &hir::Expr<'_>,
702 error: Option<TypeError<'tcx>>,
703 ) {
704 match (self.tcx.parent_hir_node(expr.hir_id), error) {
705 (hir::Node::LetStmt(hir::LetStmt { ty: Some(ty), init: Some(init), .. }), _)
706 if init.hir_id == expr.hir_id && !ty.span.source_equal(init.span) =>
707 {
708 err.span_label(ty.span, "expected due to this");
710 }
711 (
712 hir::Node::Expr(hir::Expr { kind: hir::ExprKind::Assign(lhs, rhs, _), .. }),
713 Some(TypeError::Sorts(ExpectedFound { expected, .. })),
714 ) if rhs.hir_id == expr.hir_id && !expected.is_closure() => {
715 let mut primary_span = lhs.span;
718 let mut secondary_span = lhs.span;
719 let mut post_message = "";
720 match lhs.kind {
721 hir::ExprKind::Path(hir::QPath::Resolved(
722 None,
723 hir::Path {
724 res:
725 hir::def::Res::Def(
726 hir::def::DefKind::Static { .. } | hir::def::DefKind::Const,
727 def_id,
728 ),
729 ..
730 },
731 )) => {
732 if let Some(hir::Node::Item(hir::Item {
733 kind:
734 hir::ItemKind::Static(_, ident, ty, _)
735 | hir::ItemKind::Const(ident, _, ty, _),
736 ..
737 })) = self.tcx.hir_get_if_local(*def_id)
738 {
739 primary_span = ty.span;
740 secondary_span = ident.span;
741 post_message = " type";
742 }
743 }
744 hir::ExprKind::Path(hir::QPath::Resolved(
745 None,
746 hir::Path { res: hir::def::Res::Local(hir_id), .. },
747 )) => {
748 if let hir::Node::Pat(pat) = self.tcx.hir_node(*hir_id) {
749 primary_span = pat.span;
750 secondary_span = pat.span;
751 match self.tcx.parent_hir_node(pat.hir_id) {
752 hir::Node::LetStmt(hir::LetStmt { ty: Some(ty), .. }) => {
753 primary_span = ty.span;
754 post_message = " type";
755 }
756 hir::Node::LetStmt(hir::LetStmt { init: Some(init), .. }) => {
757 primary_span = init.span;
758 post_message = " value";
759 }
760 hir::Node::Param(hir::Param { ty_span, .. }) => {
761 primary_span = *ty_span;
762 post_message = " parameter type";
763 }
764 _ => {}
765 }
766 }
767 }
768 _ => {}
769 }
770
771 if primary_span != secondary_span
772 && self
773 .tcx
774 .sess
775 .source_map()
776 .is_multiline(secondary_span.shrink_to_hi().until(primary_span))
777 {
778 err.span_label(secondary_span, "expected due to the type of this binding");
781 err.span_label(primary_span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("expected due to this{0}",
post_message))
})format!("expected due to this{post_message}"));
782 } else if post_message.is_empty() {
783 err.span_label(primary_span, "expected due to the type of this binding");
785 } else {
786 err.span_label(primary_span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("expected due to this{0}",
post_message))
})format!("expected due to this{post_message}"));
788 }
789
790 if !lhs.is_syntactic_place_expr() {
791 err.downgrade_to_delayed_bug();
794 }
795 }
796 (
797 hir::Node::Expr(hir::Expr { kind: hir::ExprKind::Binary(_, lhs, rhs), .. }),
798 Some(TypeError::Sorts(ExpectedFound { expected, .. })),
799 ) if rhs.hir_id == expr.hir_id
800 && self.typeck_results.borrow().expr_ty_adjusted_opt(lhs) == Some(expected)
801 && !#[allow(non_exhaustive_omitted_patterns)] match lhs.kind {
hir::ExprKind::Let(..) => true,
_ => false,
}matches!(lhs.kind, hir::ExprKind::Let(..)) =>
803 {
804 err.span_label(lhs.span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("expected because this is `{0}`",
expected))
})format!("expected because this is `{expected}`"));
805 }
806 _ => {}
807 }
808 }
809
810 fn annotate_mut_binding_to_immutable_binding(
829 &self,
830 err: &mut Diag<'_>,
831 expr: &hir::Expr<'_>,
832 expr_ty: Ty<'tcx>,
833 expected: Ty<'tcx>,
834 error: Option<TypeError<'tcx>>,
835 ) -> bool {
836 if let Some(TypeError::Sorts(ExpectedFound { .. })) = error
837 && let ty::Ref(_, inner, hir::Mutability::Not) = expected.kind()
838
839 && self.can_eq(self.param_env, *inner, expr_ty)
841
842 && let hir::Node::Expr(hir::Expr { kind: hir::ExprKind::Assign(lhs, rhs, _), .. }) =
844 self.tcx.parent_hir_node(expr.hir_id)
845 && rhs.hir_id == expr.hir_id
846
847 && let hir::ExprKind::Path(hir::QPath::Resolved(
849 None,
850 hir::Path { res: hir::def::Res::Local(hir_id), .. },
851 )) = lhs.kind
852 && let hir::Node::Pat(pat) = self.tcx.hir_node(*hir_id)
853
854 && let hir::Node::Param(hir::Param { ty_span, .. }) =
856 self.tcx.parent_hir_node(pat.hir_id)
857 && let item = self.tcx.hir_get_parent_item(pat.hir_id)
858 && let item = self.tcx.hir_owner_node(item)
859 && let Some(fn_decl) = item.fn_decl()
860
861 && let hir::PatKind::Binding(hir::BindingMode::MUT, _hir_id, ident, _) = pat.kind
863
864 && let Some(ty_ref) = fn_decl
866 .inputs
867 .iter()
868 .filter_map(|ty| match ty.kind {
869 hir::TyKind::Ref(lt, mut_ty) if ty.span == *ty_span => Some((lt, mut_ty)),
870 _ => None,
871 })
872 .next()
873 {
874 let mut sugg = if ty_ref.1.mutbl.is_mut() {
875 ::alloc::vec::Vec::new()vec![]
877 } else {
878 <[_]>::into_vec(::alloc::boxed::box_new([(ty_ref.1.ty.span.shrink_to_lo(),
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}mut ",
if ty_ref.0.ident.span.is_empty() { "" } else { " " }))
}))]))vec![(
880 ty_ref.1.ty.span.shrink_to_lo(),
881 format!("{}mut ", if ty_ref.0.ident.span.is_empty() { "" } else { " " },),
882 )]
883 };
884 sugg.extend([
885 (pat.span.until(ident.span), String::new()),
886 (lhs.span.shrink_to_lo(), "*".to_string()),
887 ]);
888 err.multipart_suggestion_verbose(
891 "you might have meant to mutate the pointed at value being passed in, instead of \
892 changing the reference in the local binding",
893 sugg,
894 Applicability::MaybeIncorrect,
895 );
896 return true;
897 }
898 false
899 }
900
901 fn annotate_alternative_method_deref(
902 &self,
903 err: &mut Diag<'_>,
904 expr: &hir::Expr<'_>,
905 error: Option<TypeError<'tcx>>,
906 ) {
907 let Some(TypeError::Sorts(ExpectedFound { expected, .. })) = error else {
908 return;
909 };
910 let hir::Node::Expr(hir::Expr { kind: hir::ExprKind::Assign(lhs, rhs, _), .. }) =
911 self.tcx.parent_hir_node(expr.hir_id)
912 else {
913 return;
914 };
915 if rhs.hir_id != expr.hir_id || expected.is_closure() {
916 return;
917 }
918 let hir::ExprKind::Unary(hir::UnOp::Deref, deref) = lhs.kind else {
919 return;
920 };
921 let hir::ExprKind::MethodCall(path, base, args, _) = deref.kind else {
922 return;
923 };
924 let Some(self_ty) = self.typeck_results.borrow().expr_ty_adjusted_opt(base) else {
925 return;
926 };
927
928 let Ok(pick) = self.lookup_probe_for_diagnostic(
929 path.ident,
930 self_ty,
931 deref,
932 probe::ProbeScope::TraitsInScope,
933 None,
934 ) else {
935 return;
936 };
937
938 let Ok(in_scope_methods) = self.probe_for_name_many(
939 probe::Mode::MethodCall,
940 path.ident,
941 Some(expected),
942 probe::IsSuggestion(true),
943 self_ty,
944 deref.hir_id,
945 probe::ProbeScope::TraitsInScope,
946 ) else {
947 return;
948 };
949
950 let other_methods_in_scope: Vec<_> =
951 in_scope_methods.iter().filter(|c| c.item.def_id != pick.item.def_id).collect();
952
953 let Ok(all_methods) = self.probe_for_name_many(
954 probe::Mode::MethodCall,
955 path.ident,
956 Some(expected),
957 probe::IsSuggestion(true),
958 self_ty,
959 deref.hir_id,
960 probe::ProbeScope::AllTraits,
961 ) else {
962 return;
963 };
964
965 let suggestions: Vec<_> = all_methods
966 .into_iter()
967 .filter(|c| c.item.def_id != pick.item.def_id)
968 .map(|c| {
969 let m = c.item;
970 let generic_args = ty::GenericArgs::for_item(self.tcx, m.def_id, |param, _| {
971 self.var_for_def(deref.span, param)
972 });
973 let mutability =
974 match self.tcx.fn_sig(m.def_id).skip_binder().input(0).skip_binder().kind() {
975 ty::Ref(_, _, hir::Mutability::Mut) => "&mut ",
976 ty::Ref(_, _, _) => "&",
977 _ => "",
978 };
979 <[_]>::into_vec(::alloc::boxed::box_new([(deref.span.until(base.span),
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}({1}",
{
let _guard = NoTrimmedGuard::new();
self.tcx.def_path_str_with_args(m.def_id, generic_args)
}, mutability))
})),
match &args {
[] =>
(base.span.shrink_to_hi().with_hi(deref.span.hi()),
")".to_string()),
[first, ..] =>
(base.span.between(first.span), ", ".to_string()),
}]))vec![
980 (
981 deref.span.until(base.span),
982 format!(
983 "{}({}",
984 with_no_trimmed_paths!(
985 self.tcx.def_path_str_with_args(m.def_id, generic_args,)
986 ),
987 mutability,
988 ),
989 ),
990 match &args {
991 [] => (base.span.shrink_to_hi().with_hi(deref.span.hi()), ")".to_string()),
992 [first, ..] => (base.span.between(first.span), ", ".to_string()),
993 },
994 ]
995 })
996 .collect();
997 if suggestions.is_empty() {
998 return;
999 }
1000 let mut path_span: MultiSpan = path.ident.span.into();
1001 path_span.push_span_label(
1002 path.ident.span,
1003 {
let _guard = NoTrimmedGuard::new();
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("refers to `{0}`",
self.tcx.def_path_str(pick.item.def_id)))
})
}with_no_trimmed_paths!(format!(
1004 "refers to `{}`",
1005 self.tcx.def_path_str(pick.item.def_id),
1006 )),
1007 );
1008 let container_id = pick.item.container_id(self.tcx);
1009 let container = { let _guard = NoTrimmedGuard::new(); self.tcx.def_path_str(container_id) }with_no_trimmed_paths!(self.tcx.def_path_str(container_id));
1010 for def_id in pick.import_ids {
1011 let hir_id = self.tcx.local_def_id_to_hir_id(def_id);
1012 path_span
1013 .push_span_label(self.tcx.hir_span(hir_id), ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}` imported here", container))
})format!("`{container}` imported here"));
1014 }
1015 let tail = {
let _guard = NoTrimmedGuard::new();
match &other_methods_in_scope[..] {
[] => return,
[candidate] =>
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the method of the same name on {0} `{1}`",
match candidate.kind {
probe::CandidateKind::InherentImplCandidate { .. } =>
"the inherent impl for",
_ => "trait",
},
self.tcx.def_path_str(candidate.item.container_id(self.tcx))))
}),
_ if other_methods_in_scope.len() < 5 => {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the methods of the same name on {0}",
listify(&other_methods_in_scope[..other_methods_in_scope.len()
- 1],
|c|
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}`",
self.tcx.def_path_str(c.item.container_id(self.tcx))))
})).unwrap_or_default()))
})
}
_ =>
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the methods of the same name on {0} other traits",
other_methods_in_scope.len()))
}),
}
}with_no_trimmed_paths!(match &other_methods_in_scope[..] {
1016 [] => return,
1017 [candidate] => format!(
1018 "the method of the same name on {} `{}`",
1019 match candidate.kind {
1020 probe::CandidateKind::InherentImplCandidate { .. } => "the inherent impl for",
1021 _ => "trait",
1022 },
1023 self.tcx.def_path_str(candidate.item.container_id(self.tcx))
1024 ),
1025 _ if other_methods_in_scope.len() < 5 => {
1026 format!(
1027 "the methods of the same name on {}",
1028 listify(
1029 &other_methods_in_scope[..other_methods_in_scope.len() - 1],
1030 |c| format!("`{}`", self.tcx.def_path_str(c.item.container_id(self.tcx)))
1031 )
1032 .unwrap_or_default(),
1033 )
1034 }
1035 _ => format!(
1036 "the methods of the same name on {} other traits",
1037 other_methods_in_scope.len()
1038 ),
1039 });
1040 err.span_note(
1041 path_span,
1042 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the `{0}` call is resolved to the method in `{1}`, shadowing {2}",
path.ident, container, tail))
})format!(
1043 "the `{}` call is resolved to the method in `{container}`, shadowing {tail}",
1044 path.ident,
1045 ),
1046 );
1047 if suggestions.len() > other_methods_in_scope.len() {
1048 err.note(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("additionally, there are {0} other available methods that aren\'t in scope",
suggestions.len() - other_methods_in_scope.len()))
})format!(
1049 "additionally, there are {} other available methods that aren't in scope",
1050 suggestions.len() - other_methods_in_scope.len()
1051 ));
1052 }
1053 err.multipart_suggestions(
1054 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("you might have meant to call {0}; you can use the fully-qualified path to call {1} explicitly",
if suggestions.len() == 1 {
"the other method"
} else { "one of the other methods" },
if suggestions.len() == 1 { "it" } else { "one of them" }))
})format!(
1055 "you might have meant to call {}; you can use the fully-qualified path to call {} \
1056 explicitly",
1057 if suggestions.len() == 1 {
1058 "the other method"
1059 } else {
1060 "one of the other methods"
1061 },
1062 if suggestions.len() == 1 { "it" } else { "one of them" },
1063 ),
1064 suggestions,
1065 Applicability::MaybeIncorrect,
1066 );
1067 }
1068
1069 pub(crate) fn get_conversion_methods_for_diagnostic(
1070 &self,
1071 span: Span,
1072 expected: Ty<'tcx>,
1073 checked_ty: Ty<'tcx>,
1074 hir_id: hir::HirId,
1075 ) -> Vec<AssocItem> {
1076 let methods = self.probe_for_return_type_for_diagnostic(
1077 span,
1078 probe::Mode::MethodCall,
1079 expected,
1080 checked_ty,
1081 hir_id,
1082 |m| {
1083 self.has_only_self_parameter(m)
1084 && self
1085 .tcx
1086 .has_attr(m.def_id, sym::rustc_conversion_suggestion)
1097 },
1098 );
1099
1100 methods
1101 }
1102
1103 fn has_only_self_parameter(&self, method: &AssocItem) -> bool {
1105 method.is_method()
1106 && self.tcx.fn_sig(method.def_id).skip_binder().inputs().skip_binder().len() == 1
1107 }
1108
1109 pub(crate) fn maybe_get_block_expr(
1111 &self,
1112 expr: &hir::Expr<'tcx>,
1113 ) -> Option<&'tcx hir::Expr<'tcx>> {
1114 match expr {
1115 hir::Expr { kind: hir::ExprKind::Block(block, ..), .. } => block.expr,
1116 _ => None,
1117 }
1118 }
1119
1120 pub(crate) fn is_destruct_assignment_desugaring(&self, expr: &hir::Expr<'_>) -> bool {
1125 if let hir::ExprKind::Path(hir::QPath::Resolved(
1126 _,
1127 hir::Path { res: hir::def::Res::Local(bind_hir_id), .. },
1128 )) = expr.kind
1129 && let bind = self.tcx.hir_node(*bind_hir_id)
1130 && let parent = self.tcx.parent_hir_node(*bind_hir_id)
1131 && let hir::Node::Pat(hir::Pat {
1132 kind: hir::PatKind::Binding(_, _hir_id, _, _), ..
1133 }) = bind
1134 && let hir::Node::Pat(hir::Pat { default_binding_modes: false, .. }) = parent
1135 {
1136 true
1137 } else {
1138 false
1139 }
1140 }
1141
1142 fn explain_self_literal(
1143 &self,
1144 err: &mut Diag<'_>,
1145 expr: &hir::Expr<'tcx>,
1146 expected: Ty<'tcx>,
1147 found: Ty<'tcx>,
1148 ) {
1149 match expr.peel_drop_temps().kind {
1150 hir::ExprKind::Struct(
1151 hir::QPath::Resolved(
1152 None,
1153 hir::Path { res: hir::def::Res::SelfTyAlias { alias_to, .. }, span, .. },
1154 ),
1155 ..,
1156 )
1157 | hir::ExprKind::Call(
1158 hir::Expr {
1159 kind:
1160 hir::ExprKind::Path(hir::QPath::Resolved(
1161 None,
1162 hir::Path {
1163 res: hir::def::Res::SelfTyAlias { alias_to, .. },
1164 span,
1165 ..
1166 },
1167 )),
1168 ..
1169 },
1170 ..,
1171 ) => {
1172 if let Some(hir::Node::Item(hir::Item {
1173 kind: hir::ItemKind::Impl(hir::Impl { self_ty, .. }),
1174 ..
1175 })) = self.tcx.hir_get_if_local(*alias_to)
1176 {
1177 err.span_label(self_ty.span, "this is the type of the `Self` literal");
1178 }
1179 if let ty::Adt(e_def, e_args) = expected.kind()
1180 && let ty::Adt(f_def, _f_args) = found.kind()
1181 && e_def == f_def
1182 {
1183 err.span_suggestion_verbose(
1184 *span,
1185 "use the type name directly",
1186 self.tcx.value_path_str_with_args(e_def.did(), e_args),
1187 Applicability::MaybeIncorrect,
1188 );
1189 }
1190 }
1191 _ => {}
1192 }
1193 }
1194
1195 fn note_wrong_return_ty_due_to_generic_arg(
1196 &self,
1197 err: &mut Diag<'_>,
1198 expr: &hir::Expr<'_>,
1199 checked_ty: Ty<'tcx>,
1200 ) {
1201 let hir::Node::Expr(parent_expr) = self.tcx.parent_hir_node(expr.hir_id) else {
1202 return;
1203 };
1204 if parent_expr.span.desugaring_kind().is_some() {
1205 return;
1206 }
1207 enum CallableKind {
1208 Function,
1209 Method,
1210 Constructor,
1211 }
1212 let mut maybe_emit_help = |def_id: hir::def_id::DefId,
1213 callable: Ident,
1214 args: &[hir::Expr<'_>],
1215 kind: CallableKind| {
1216 let arg_idx = args.iter().position(|a| a.hir_id == expr.hir_id).unwrap();
1217 let fn_ty = self.tcx.type_of(def_id).skip_binder();
1218 if !fn_ty.is_fn() {
1219 return;
1220 }
1221 let fn_sig = fn_ty.fn_sig(self.tcx).skip_binder();
1222 let Some(&arg) = fn_sig
1223 .inputs()
1224 .get(arg_idx + if #[allow(non_exhaustive_omitted_patterns)] match kind {
CallableKind::Method => true,
_ => false,
}matches!(kind, CallableKind::Method) { 1 } else { 0 })
1225 else {
1226 return;
1227 };
1228 if #[allow(non_exhaustive_omitted_patterns)] match arg.kind() {
ty::Param(_) => true,
_ => false,
}matches!(arg.kind(), ty::Param(_))
1229 && fn_sig.output().contains(arg)
1230 && self.node_ty(args[arg_idx].hir_id) == checked_ty
1231 {
1232 let mut multi_span: MultiSpan = parent_expr.span.into();
1233 multi_span.push_span_label(
1234 args[arg_idx].span,
1235 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this argument influences the {0} of `{1}`",
if #[allow(non_exhaustive_omitted_patterns)] match kind {
CallableKind::Constructor => true,
_ => false,
} {
"type"
} else { "return type" }, callable))
})format!(
1236 "this argument influences the {} of `{}`",
1237 if matches!(kind, CallableKind::Constructor) {
1238 "type"
1239 } else {
1240 "return type"
1241 },
1242 callable
1243 ),
1244 );
1245 err.span_help(
1246 multi_span,
1247 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the {0} `{1}` due to the type of the argument passed",
match kind {
CallableKind::Function => "return type of this call is",
CallableKind::Method => "return type of this call is",
CallableKind::Constructor => "type constructed contains",
}, checked_ty))
})format!(
1248 "the {} `{}` due to the type of the argument passed",
1249 match kind {
1250 CallableKind::Function => "return type of this call is",
1251 CallableKind::Method => "return type of this call is",
1252 CallableKind::Constructor => "type constructed contains",
1253 },
1254 checked_ty
1255 ),
1256 );
1257 }
1258 };
1259 match parent_expr.kind {
1260 hir::ExprKind::Call(fun, args) => {
1261 let hir::ExprKind::Path(hir::QPath::Resolved(_, path)) = fun.kind else {
1262 return;
1263 };
1264 let hir::def::Res::Def(kind, def_id) = path.res else {
1265 return;
1266 };
1267 let callable_kind = if #[allow(non_exhaustive_omitted_patterns)] match kind {
hir::def::DefKind::Ctor(_, _) => true,
_ => false,
}matches!(kind, hir::def::DefKind::Ctor(_, _)) {
1268 CallableKind::Constructor
1269 } else {
1270 CallableKind::Function
1271 };
1272 maybe_emit_help(def_id, path.segments.last().unwrap().ident, args, callable_kind);
1273 }
1274 hir::ExprKind::MethodCall(method, _receiver, args, _span) => {
1275 let Some(def_id) =
1276 self.typeck_results.borrow().type_dependent_def_id(parent_expr.hir_id)
1277 else {
1278 return;
1279 };
1280 maybe_emit_help(def_id, method.ident, args, CallableKind::Method)
1281 }
1282 _ => return,
1283 }
1284 }
1285}
1286
1287pub(crate) enum TypeMismatchSource<'tcx> {
1288 Ty(Ty<'tcx>),
1291 Arg { call_expr: &'tcx hir::Expr<'tcx>, incompatible_arg: usize },
1295}