1use std::borrow::Cow;
49use std::ops::ControlFlow;
50use std::path::PathBuf;
51use std::{cmp, fmt, iter};
52
53use rustc_abi::ExternAbi;
54use rustc_data_structures::fx::{FxHashSet, FxIndexMap, FxIndexSet};
55use rustc_errors::{Applicability, Diag, DiagStyledString, IntoDiagArg, StringPart, pluralize};
56use rustc_hir::attrs::diagnostic::{CustomDiagnostic, Directive, FormatArgs};
57use rustc_hir::def_id::{CRATE_DEF_ID, DefId};
58use rustc_hir::intravisit::Visitor;
59use rustc_hir::{self as hir, find_attr};
60use rustc_infer::infer::DefineOpaqueTypes;
61use rustc_macros::extension;
62use rustc_middle::bug;
63use rustc_middle::traits::PatternOriginExpr;
64use rustc_middle::ty::error::{ExpectedFound, TypeError, TypeErrorToStringExt};
65use rustc_middle::ty::print::{PrintTraitRefExt as _, WrapBinderMode, with_forced_trimmed_paths};
66use rustc_middle::ty::{
67 self, List, Mutability, ParamEnv, Region, RegionUtilitiesExt, Ty, TyCtxt, TypeFoldable,
68 TypeSuperVisitable, TypeVisitable, TypeVisitableExt, Unnormalized,
69};
70use rustc_span::{BytePos, DUMMY_SP, DesugaringKind, Pos, Span, sym};
71use thin_vec::ThinVec;
72use tracing::{debug, instrument};
73
74use crate::diagnostics::{ObligationCauseFailureCode, TypeErrorAdditionalDiags};
75use crate::error_reporting::TypeErrCtxt;
76use crate::error_reporting::traits::ambiguity::{
77 CandidateSource, compute_applicable_impls_for_diagnostics,
78};
79use crate::infer;
80use crate::infer::relate::{self, RelateResult, TypeRelation};
81use crate::infer::{InferCtxt, InferCtxtExt as _, TypeTrace, ValuePairs};
82use crate::solve::deeply_normalize_for_diagnostics;
83use crate::traits::{
84 MatchExpressionArmCause, Obligation, ObligationCause, ObligationCauseCode, ObligationCtxt,
85 specialization_graph,
86};
87
88mod note_and_explain;
89mod suggest;
90
91pub mod need_type_info;
92pub mod nice_region_error;
93pub mod region;
94
95fn escape_literal(s: &str) -> String {
98 let mut escaped = String::with_capacity(s.len());
99 let mut chrs = s.chars().peekable();
100 while let Some(first) = chrs.next() {
101 match (first, chrs.peek()) {
102 ('\\', Some(&delim @ '"') | Some(&delim @ '\'')) => {
103 escaped.push('\\');
104 escaped.push(delim);
105 chrs.next();
106 }
107 ('"' | '\'', _) => {
108 escaped.push('\\');
109 escaped.push(first)
110 }
111 (c, _) => escaped.push(c),
112 };
113 }
114 escaped
115}
116
117impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
118 fn normalize_fn_sig(
119 &self,
120 fn_sig: Unnormalized<'tcx, ty::PolyFnSig<'tcx>>,
121 ) -> ty::PolyFnSig<'tcx> {
122 let Some(param_env) = self.param_env else {
123 return fn_sig.skip_normalization();
124 };
125
126 if fn_sig.skip_normalization().has_escaping_bound_vars() {
127 return fn_sig.skip_normalization();
128 }
129
130 self.probe(|_| {
131 let ocx = ObligationCtxt::new(self);
132 let normalized_fn_sig = ocx.normalize(&ObligationCause::dummy(), param_env, fn_sig);
133 if ocx.evaluate_obligations_error_on_ambiguity().is_empty() {
134 let normalized_fn_sig = self.resolve_vars_if_possible(normalized_fn_sig);
135 if !normalized_fn_sig.has_infer() {
136 return normalized_fn_sig;
137 }
138 }
139 fn_sig.skip_normalization()
140 })
141 }
142
143 pub fn type_error_struct_with_diag<M>(
154 &self,
155 sp: Span,
156 mk_diag: M,
157 actual_ty: Ty<'tcx>,
158 ) -> Diag<'a>
159 where
160 M: FnOnce(String) -> Diag<'a>,
161 {
162 let actual_ty = self.resolve_vars_if_possible(actual_ty);
163 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:163",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(163u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("type_error_struct_with_diag({0:?}, {1:?})",
sp, actual_ty) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("type_error_struct_with_diag({:?}, {:?})", sp, actual_ty);
164
165 let mut err = mk_diag(self.ty_to_string(actual_ty));
166
167 if actual_ty.references_error() {
169 err.downgrade_to_delayed_bug();
170 }
171
172 err
173 }
174
175 pub fn report_mismatched_types(
176 &self,
177 cause: &ObligationCause<'tcx>,
178 param_env: ty::ParamEnv<'tcx>,
179 expected: Ty<'tcx>,
180 actual: Ty<'tcx>,
181 err: TypeError<'tcx>,
182 ) -> Diag<'a> {
183 let mut diag = self.report_and_explain_type_error(
184 TypeTrace::types(cause, expected, actual),
185 param_env,
186 err,
187 );
188
189 self.suggest_param_env_shadowing(&mut diag, expected, actual, param_env);
190
191 diag
192 }
193
194 pub fn report_mismatched_consts(
195 &self,
196 cause: &ObligationCause<'tcx>,
197 param_env: ty::ParamEnv<'tcx>,
198 expected: ty::Const<'tcx>,
199 actual: ty::Const<'tcx>,
200 err: TypeError<'tcx>,
201 ) -> Diag<'a> {
202 self.report_and_explain_type_error(
203 TypeTrace::consts(cause, expected, actual),
204 param_env,
205 err,
206 )
207 }
208
209 fn check_and_note_conflicting_crates(&self, err: &mut Diag<'_>, terr: TypeError<'tcx>) -> bool {
211 match terr {
212 TypeError::Sorts(ref exp_found) => {
213 if let (&ty::Adt(exp_adt, _), &ty::Adt(found_adt, _)) =
216 (exp_found.expected.kind(), exp_found.found.kind())
217 {
218 return self.check_same_definition_different_crate(
219 err,
220 exp_adt.did(),
221 [found_adt.did()].into_iter(),
222 |did| ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[self.tcx.def_span(did)]))vec![self.tcx.def_span(did)],
223 "type",
224 );
225 }
226 }
227 TypeError::Traits(ref exp_found) => {
228 return self.check_same_definition_different_crate(
229 err,
230 exp_found.expected,
231 [exp_found.found].into_iter(),
232 |did| ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[self.tcx.def_span(did)]))vec![self.tcx.def_span(did)],
233 "trait",
234 );
235 }
236 _ => (), }
238 false
239 }
240
241 fn suggest_param_env_shadowing(
242 &self,
243 diag: &mut Diag<'_>,
244 expected: Ty<'tcx>,
245 found: Ty<'tcx>,
246 param_env: ty::ParamEnv<'tcx>,
247 ) {
248 let (alias, &def_id, concrete) = match (expected.kind(), found.kind()) {
249 (ty::Alias(_, proj @ ty::AliasTy { kind: ty::Projection { def_id }, .. }), _) => {
250 (proj, def_id, found)
251 }
252 (_, ty::Alias(_, proj @ ty::AliasTy { kind: ty::Projection { def_id }, .. })) => {
253 (proj, def_id, expected)
254 }
255 _ => return,
256 };
257
258 let tcx = self.tcx;
259
260 let trait_ref = alias.trait_ref(tcx);
261 let obligation =
262 Obligation::new(tcx, ObligationCause::dummy(), param_env, ty::Binder::dummy(trait_ref));
263
264 let applicable_impls =
265 compute_applicable_impls_for_diagnostics(self.infcx, &obligation, false);
266
267 for candidate in applicable_impls {
268 let impl_def_id = match candidate {
269 CandidateSource::DefId(did) => did,
270 CandidateSource::ParamEnv(_) => continue,
271 };
272
273 let is_shadowed = self.infcx.probe(|_| {
274 let impl_substs = self.infcx.fresh_args_for_item(DUMMY_SP, impl_def_id);
275 let impl_trait_ref =
276 tcx.impl_trait_ref(impl_def_id).instantiate(tcx, impl_substs).skip_norm_wip();
277
278 let expected_trait_ref = alias.trait_ref(tcx);
279
280 if let Err(_) = self.infcx.at(&ObligationCause::dummy(), param_env).eq(
281 DefineOpaqueTypes::No,
282 expected_trait_ref,
283 impl_trait_ref,
284 ) {
285 return false;
286 }
287
288 let leaf_def = match specialization_graph::assoc_def(tcx, impl_def_id, def_id) {
289 Ok(leaf) => leaf,
290 Err(_) => return false,
291 };
292
293 let trait_def_id = alias.trait_def_id(tcx);
294 let rebased_args = alias.args.rebase_onto(tcx, trait_def_id, impl_substs);
295
296 if !leaf_def.item.defaultness(tcx).has_value() {
299 return false;
300 }
301
302 let impl_item_def_id = leaf_def.item.def_id;
303 if !tcx.check_args_compatible(impl_item_def_id, rebased_args) {
304 return false;
305 }
306 let impl_assoc_ty =
307 tcx.type_of(impl_item_def_id).instantiate(tcx, rebased_args).skip_norm_wip();
308
309 self.infcx.can_eq(param_env, impl_assoc_ty, concrete)
310 });
311
312 if is_shadowed {
313 diag.note(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the associated type `{0}` is defined as `{1}` in the implementation, but the where-bound `{2}` shadows this definition\nsee issue #152409 <https://github.com/rust-lang/rust/issues/152409> for more information",
self.ty_to_string(alias.to_ty(tcx, ty::IsRigid::No)),
self.ty_to_string(concrete),
self.ty_to_string(alias.self_ty())))
})format!(
314 "the associated type `{}` is defined as `{}` in the implementation, \
315 but the where-bound `{}` shadows this definition\n\
316 see issue #152409 <https://github.com/rust-lang/rust/issues/152409> for more information",
317 self.ty_to_string(alias.to_ty(tcx, ty::IsRigid::No)),
318 self.ty_to_string(concrete),
319 self.ty_to_string(alias.self_ty())
320 ));
321 return;
322 }
323 }
324 }
325
326 fn note_error_origin(
327 &self,
328 err: &mut Diag<'_>,
329 cause: &ObligationCause<'tcx>,
330 exp_found: Option<ty::error::ExpectedFound<Ty<'tcx>>>,
331 terr: TypeError<'tcx>,
332 param_env: Option<ParamEnv<'tcx>>,
333 ) {
334 match *cause.code() {
335 ObligationCauseCode::Pattern {
336 origin_expr: Some(origin_expr),
337 span: Some(span),
338 root_ty,
339 } => {
340 let expected_ty = self.resolve_vars_if_possible(root_ty);
341 if !#[allow(non_exhaustive_omitted_patterns)] match expected_ty.kind() {
ty::Infer(ty::InferTy::TyVar(_) | ty::InferTy::FreshTy(_)) => true,
_ => false,
}matches!(
342 expected_ty.kind(),
343 ty::Infer(ty::InferTy::TyVar(_) | ty::InferTy::FreshTy(_))
344 ) {
345 if span.desugaring_kind() == Some(DesugaringKind::ForLoop)
347 && let ty::Adt(def, args) = expected_ty.kind()
348 && Some(def.did()) == self.tcx.get_diagnostic_item(sym::Option)
349 {
350 err.span_label(
351 span,
352 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this is an iterator with items of type `{0}`",
args.type_at(0)))
})format!("this is an iterator with items of type `{}`", args.type_at(0)),
353 );
354 } else if !span.overlaps(cause.span) {
355 let expected_ty = self.tcx.short_string(expected_ty, err.long_ty_path());
356 err.span_label(span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this expression has type `{0}`",
expected_ty))
})format!("this expression has type `{expected_ty}`"));
357 }
358 }
359 if let Some(ty::error::ExpectedFound { found, .. }) = exp_found
360 && let Ok(mut peeled_snippet) =
361 self.tcx.sess.source_map().span_to_snippet(origin_expr.peeled_span)
362 {
363 if origin_expr.peeled_prefix_suggestion_parentheses {
368 peeled_snippet = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("({0})", peeled_snippet))
})format!("({peeled_snippet})");
369 }
370
371 if expected_ty.boxed_ty() == Some(found) {
374 err.span_suggestion_verbose(
375 span,
376 "consider dereferencing the boxed value",
377 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("*{0}", peeled_snippet))
})format!("*{peeled_snippet}"),
378 Applicability::MachineApplicable,
379 );
380 } else if let Some(param_env) = param_env
381 && let Some(prefix) = self.should_deref_suggestion_on_mismatch(
382 param_env,
383 found,
384 expected_ty,
385 origin_expr,
386 )
387 {
388 err.span_suggestion_verbose(
389 span,
390 "consider dereferencing to access the inner value using the `Deref` trait",
391 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1}", prefix, peeled_snippet))
})format!("{prefix}{peeled_snippet}"),
392 Applicability::MaybeIncorrect,
393 );
394 }
395 }
396 }
397 ObligationCauseCode::Pattern { origin_expr: None, span: Some(span), .. } => {
398 err.span_label(span, "expected due to this");
399 }
400 ObligationCauseCode::BlockTailExpression(
401 _,
402 hir::MatchSource::TryDesugar(scrut_hir_id),
403 ) => {
404 if let Some(ty::error::ExpectedFound { expected, .. }) = exp_found {
405 let scrut_expr = self.tcx.hir_expect_expr(scrut_hir_id);
406 let scrut_ty = if let hir::ExprKind::Call(_, args) = &scrut_expr.kind {
407 let arg_expr = args.first().expect("try desugaring call w/out arg");
408 self.typeck_results
409 .as_ref()
410 .and_then(|typeck_results| typeck_results.expr_ty_opt(arg_expr))
411 } else {
412 ::rustc_middle::util::bug::bug_fmt(format_args!("try desugaring w/out call expr as scrutinee"));bug!("try desugaring w/out call expr as scrutinee");
413 };
414
415 match scrut_ty {
416 Some(ty) if expected == ty => {
417 let source_map = self.tcx.sess.source_map();
418 err.span_suggestion(
419 source_map.end_point(cause.span),
420 "try removing this `?`",
421 "",
422 Applicability::MachineApplicable,
423 );
424 }
425 _ => {}
426 }
427 }
428 }
429 ObligationCauseCode::MatchExpressionArm(MatchExpressionArmCause {
430 arm_block_id,
431 arm_span,
432 arm_ty,
433 prior_arm_block_id,
434 prior_arm_span,
435 prior_arm_ty,
436 source,
437 ref prior_non_diverging_arms,
438 scrut_span,
439 expr_span,
440 ..
441 }) => match source {
442 hir::MatchSource::TryDesugar(scrut_hir_id) => {
443 if let Some(ty::error::ExpectedFound { expected, .. }) = exp_found {
444 let scrut_expr = self.tcx.hir_expect_expr(scrut_hir_id);
445 let scrut_ty = if let hir::ExprKind::Call(_, args) = &scrut_expr.kind {
446 let arg_expr = args.first().expect("try desugaring call w/out arg");
447 self.typeck_results
448 .as_ref()
449 .and_then(|typeck_results| typeck_results.expr_ty_opt(arg_expr))
450 } else {
451 ::rustc_middle::util::bug::bug_fmt(format_args!("try desugaring w/out call expr as scrutinee"));bug!("try desugaring w/out call expr as scrutinee");
452 };
453
454 match scrut_ty {
455 Some(ty) if expected == ty => {
456 let source_map = self.tcx.sess.source_map();
457 err.span_suggestion(
458 source_map.end_point(cause.span),
459 "try removing this `?`",
460 "",
461 Applicability::MachineApplicable,
462 );
463 }
464 _ => {}
465 }
466 }
467 }
468 _ => {
469 let t = self.resolve_vars_if_possible(match exp_found {
471 Some(ty::error::ExpectedFound { expected, .. }) => expected,
472 _ => prior_arm_ty,
473 });
474 let source_map = self.tcx.sess.source_map();
475 let mut any_multiline_arm = source_map.is_multiline(arm_span);
476 if prior_non_diverging_arms.len() <= 4 {
477 for sp in prior_non_diverging_arms {
478 any_multiline_arm |= source_map.is_multiline(*sp);
479 err.span_label(*sp, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this is found to be of type `{0}`",
t))
})format!("this is found to be of type `{t}`"));
480 }
481 } else if let Some(sp) = prior_non_diverging_arms.last() {
482 any_multiline_arm |= source_map.is_multiline(*sp);
483 err.span_label(
484 *sp,
485 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this and all prior arms are found to be of type `{0}`",
t))
})format!("this and all prior arms are found to be of type `{t}`"),
486 );
487 }
488 let outer = if any_multiline_arm || !source_map.is_multiline(expr_span) {
489 expr_span.shrink_to_lo().to(scrut_span)
492 } else {
493 expr_span
494 };
495 let msg = "`match` arms have incompatible types";
496 err.span_label(outer, msg);
497 if let Some(subdiag) = self.suggest_remove_semi_or_return_binding(
498 prior_arm_block_id,
499 prior_arm_ty,
500 prior_arm_span,
501 arm_block_id,
502 arm_ty,
503 arm_span,
504 ) {
505 err.subdiagnostic(subdiag);
506 }
507 }
508 },
509 ObligationCauseCode::IfExpression { expr_id, .. } => {
510 let hir::Node::Expr(&hir::Expr {
511 kind: hir::ExprKind::If(cond_expr, then_expr, Some(else_expr)),
512 span: expr_span,
513 ..
514 }) = self.tcx.hir_node(expr_id)
515 else {
516 return;
517 };
518 let then_span = self.find_block_span_from_hir_id(then_expr.hir_id);
519 let then_ty = self
520 .typeck_results
521 .as_ref()
522 .expect("if expression only expected inside FnCtxt")
523 .expr_ty(then_expr);
524 let else_span = self.find_block_span_from_hir_id(else_expr.hir_id);
525 let else_ty = self
526 .typeck_results
527 .as_ref()
528 .expect("if expression only expected inside FnCtxt")
529 .expr_ty(else_expr);
530 if let hir::ExprKind::If(_cond, _then, None) = else_expr.kind
531 && else_ty.is_unit()
532 {
533 err.note("`if` expressions without `else` evaluate to `()`");
535 err.note("consider adding an `else` block that evaluates to the expected type");
536 }
537 err.span_label(then_span, "expected because of this");
538
539 let outer_span = if self.tcx.sess.source_map().is_multiline(expr_span) {
540 if then_span.hi() == expr_span.hi() || else_span.hi() == expr_span.hi() {
541 Some(expr_span.shrink_to_lo().to(cond_expr.peel_drop_temps().span))
544 } else {
545 Some(expr_span)
546 }
547 } else {
548 None
549 };
550 if let Some(sp) = outer_span {
551 err.span_label(sp, "`if` and `else` have incompatible types");
552 }
553
554 let then_id = if let hir::ExprKind::Block(then_blk, _) = then_expr.kind {
555 then_blk.hir_id
556 } else {
557 then_expr.hir_id
558 };
559 let else_id = if let hir::ExprKind::Block(else_blk, _) = else_expr.kind {
560 else_blk.hir_id
561 } else {
562 else_expr.hir_id
563 };
564 if let Some(subdiag) = self.suggest_remove_semi_or_return_binding(
565 Some(then_id),
566 then_ty,
567 then_span,
568 Some(else_id),
569 else_ty,
570 else_span,
571 ) {
572 err.subdiagnostic(subdiag);
573 }
574 }
575 ObligationCauseCode::LetElse => {
576 err.help("try adding a diverging expression, such as `return` or `panic!(..)`");
577 err.help("...or use `match` instead of `let...else`");
578 }
579 _ => {
580 if let ObligationCauseCode::WhereClause(_, span)
581 | ObligationCauseCode::WhereClauseInExpr(_, span, ..) =
582 cause.code().peel_derives()
583 && !span.is_dummy()
584 && let TypeError::RegionsPlaceholderMismatch = terr
585 {
586 err.span_note(*span, "the lifetime requirement is introduced here");
587 }
588 }
589 }
590 }
591
592 fn should_deref_suggestion_on_mismatch(
595 &self,
596 param_env: ParamEnv<'tcx>,
597 deref_to: Ty<'tcx>,
598 deref_from: Ty<'tcx>,
599 origin_expr: PatternOriginExpr,
600 ) -> Option<String> {
601 let Some((num_derefs, (after_deref_ty, _))) = (self.autoderef_steps)(deref_from)
609 .into_iter()
610 .enumerate()
611 .find(|(_, (ty, _))| self.infcx.can_eq(param_env, *ty, deref_to))
612 else {
613 return None;
614 };
615
616 if num_derefs <= origin_expr.peeled_count {
617 return None;
618 }
619
620 let deref_part = "*".repeat(num_derefs - origin_expr.peeled_count);
621
622 if deref_from.is_ref() && !after_deref_ty.is_ref() {
625 Some(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("&{0}", deref_part))
})format!("&{deref_part}"))
626 } else {
627 Some(deref_part)
628 }
629 }
630
631 fn highlight_outer(
645 &self,
646 value: &mut DiagStyledString,
647 other_value: &mut DiagStyledString,
648 name: String,
649 args: &[ty::GenericArg<'tcx>],
650 pos: usize,
651 other_ty: Ty<'tcx>,
652 ) {
653 value.push_highlighted(name);
656
657 if args.is_empty() {
658 return;
659 }
660 value.push_highlighted("<");
661
662 for (i, arg) in args.iter().enumerate() {
663 if i > 0 {
664 value.push_normal(", ");
665 }
666
667 match arg.kind() {
668 ty::GenericArgKind::Lifetime(lt) => {
669 let s = lt.to_string();
670 value.push_normal(if s.is_empty() { "'_" } else { &s });
671 }
672 ty::GenericArgKind::Const(ct) => {
673 value.push_normal(ct.to_string());
674 }
675 ty::GenericArgKind::Type(type_arg) => {
678 if i == pos {
679 let values = self.cmp(type_arg, other_ty);
680 value.0.extend((values.0).0);
681 other_value.0.extend((values.1).0);
682 } else {
683 value.push_highlighted(type_arg.to_string());
684 }
685 }
686 }
687 }
688
689 value.push_highlighted(">");
690 }
691
692 fn cmp_type_arg(
713 &self,
714 t1_out: &mut DiagStyledString,
715 t2_out: &mut DiagStyledString,
716 path: String,
717 args: &'tcx [ty::GenericArg<'tcx>],
718 other_path: String,
719 other_ty: Ty<'tcx>,
720 ) -> bool {
721 for (i, arg) in args.iter().enumerate() {
722 if let Some(ta) = arg.as_type() {
723 if ta == other_ty {
724 self.highlight_outer(t1_out, t2_out, path, args, i, other_ty);
725 return true;
726 }
727 if let ty::Adt(def, _) = ta.kind() {
728 let path_ = self.tcx.def_path_str(def.did());
729 if path_ == other_path {
730 self.highlight_outer(t1_out, t2_out, path, args, i, other_ty);
731 return true;
732 }
733 }
734 }
735 }
736 false
737 }
738
739 fn push_comma(
741 &self,
742 value: &mut DiagStyledString,
743 other_value: &mut DiagStyledString,
744 pos: usize,
745 ) {
746 if pos > 0 {
747 value.push_normal(", ");
748 other_value.push_normal(", ");
749 }
750 }
751
752 fn cmp_fn_sig(
754 &self,
755 sig1: ty::PolyFnSig<'tcx>,
756 fn_def1: Option<(DefId, Option<&'tcx [ty::GenericArg<'tcx>]>)>,
757 sig2: ty::PolyFnSig<'tcx>,
758 fn_def2: Option<(DefId, Option<&'tcx [ty::GenericArg<'tcx>]>)>,
759 ) -> (DiagStyledString, DiagStyledString) {
760 let sig1 = self.normalize_fn_sig(Unnormalized::new_wip(sig1));
761 let sig2 = self.normalize_fn_sig(Unnormalized::new_wip(sig2));
762
763 let get_lifetimes = |sig| {
764 use rustc_hir::def::Namespace;
765 let (sig, reg) = ty::print::FmtPrinter::new(self.tcx, Namespace::TypeNS)
766 .name_all_regions(&sig, WrapBinderMode::ForAll)
767 .unwrap();
768 let lts: Vec<String> =
769 reg.into_items().map(|(_, kind)| kind.to_string()).into_sorted_stable_ord();
770 (if lts.is_empty() { String::new() } else { ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("for<{0}> ", lts.join(", ")))
})format!("for<{}> ", lts.join(", ")) }, sig)
771 };
772
773 let (lt1, sig1) = get_lifetimes(sig1);
774 let (lt2, sig2) = get_lifetimes(sig2);
775
776 let mut values =
778 (DiagStyledString::normal("".to_string()), DiagStyledString::normal("".to_string()));
779
780 let fn_item_prefix_and_safety = |fn_def, sig: ty::FnSig<'_>| match fn_def {
783 None => ("", sig.safety().prefix_str()),
784 Some((did, _)) => {
785 if self.tcx.codegen_fn_attrs(did).safe_target_features {
786 ("#[target_feature(..)] ", "")
787 } else {
788 ("", sig.safety().prefix_str())
789 }
790 }
791 };
792 let (prefix1, safety1) = fn_item_prefix_and_safety(fn_def1, sig1);
793 let (prefix2, safety2) = fn_item_prefix_and_safety(fn_def2, sig2);
794 values.0.push(prefix1, prefix1 != prefix2);
795 values.1.push(prefix2, prefix1 != prefix2);
796
797 let lifetime_diff = lt1 != lt2;
800 values.0.push(lt1, lifetime_diff);
801 values.1.push(lt2, lifetime_diff);
802
803 values.0.push(safety1, safety1 != safety2);
806 values.1.push(safety2, safety1 != safety2);
807
808 if sig1.abi() != ExternAbi::Rust {
811 values.0.push(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("extern {0} ", sig1.abi()))
})format!("extern {} ", sig1.abi()), sig1.abi() != sig2.abi());
812 }
813 if sig2.abi() != ExternAbi::Rust {
814 values.1.push(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("extern {0} ", sig2.abi()))
})format!("extern {} ", sig2.abi()), sig1.abi() != sig2.abi());
815 }
816
817 values.0.push_normal("fn(");
820 values.1.push_normal("fn(");
821
822 let len1 = sig1.inputs().len();
825 let len2 = sig2.inputs().len();
826 let splatted_arg_index1 = sig1.splatted().map(usize::from);
827 let splatted_arg_index2 = sig2.splatted().map(usize::from);
828 if len1 == len2 {
829 for (i, (l, r)) in iter::zip(sig1.inputs(), sig2.inputs()).enumerate() {
830 self.push_comma(&mut values.0, &mut values.1, i);
831 if Some(i) == splatted_arg_index1 {
832 values.0.push("#[splat]", splatted_arg_index1 != splatted_arg_index2);
833 values.0.push_normal(" ");
834 }
835 if Some(i) == splatted_arg_index2 {
836 values.1.push("#[splat]", splatted_arg_index1 != splatted_arg_index2);
837 values.1.push_normal(" ");
838 }
839 let (x1, x2) = self.cmp(*l, *r);
840 (values.0).0.extend(x1.0);
841 (values.1).0.extend(x2.0);
842 }
843 } else {
844 for (i, l) in sig1.inputs().iter().enumerate() {
845 values.0.push_highlighted(l.to_string());
846 if i != len1 - 1 {
847 values.0.push_highlighted(", ");
848 }
849 }
850 for (i, r) in sig2.inputs().iter().enumerate() {
851 values.1.push_highlighted(r.to_string());
852 if i != len2 - 1 {
853 values.1.push_highlighted(", ");
854 }
855 }
856 }
857
858 if sig1.c_variadic() {
859 if len1 > 0 {
860 values.0.push_normal(", ");
861 }
862 values.0.push("...", !sig2.c_variadic());
863 }
864 if sig2.c_variadic() {
865 if len2 > 0 {
866 values.1.push_normal(", ");
867 }
868 values.1.push("...", !sig1.c_variadic());
869 }
870
871 values.0.push_normal(")");
874 values.1.push_normal(")");
875
876 let output1 = sig1.output();
879 let output2 = sig2.output();
880 let (x1, x2) = self.cmp(output1, output2);
881 let output_diff = x1 != x2;
882 if !output1.is_unit() || output_diff {
883 values.0.push_normal(" -> ");
884 (values.0).0.extend(x1.0);
885 }
886 if !output2.is_unit() || output_diff {
887 values.1.push_normal(" -> ");
888 (values.1).0.extend(x2.0);
889 }
890
891 let fmt = |did, args| ::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" {{{0}}}",
self.tcx.def_path_str_with_args(did, args)))
})format!(" {{{}}}", self.tcx.def_path_str_with_args(did, args));
892
893 match (fn_def1, fn_def2) {
894 (Some((fn_def1, Some(fn_args1))), Some((fn_def2, Some(fn_args2)))) => {
895 let path1 = fmt(fn_def1, fn_args1);
896 let path2 = fmt(fn_def2, fn_args2);
897 let same_path = path1 == path2;
898 values.0.push(path1, !same_path);
899 values.1.push(path2, !same_path);
900 }
901 (Some((fn_def1, Some(fn_args1))), None) => {
902 values.0.push_highlighted(fmt(fn_def1, fn_args1));
903 }
904 (None, Some((fn_def2, Some(fn_args2)))) => {
905 values.1.push_highlighted(fmt(fn_def2, fn_args2));
906 }
907 _ => {}
908 }
909
910 values
911 }
912
913 pub fn cmp_traits(
914 &self,
915 def_id1: DefId,
916 args1: &[ty::GenericArg<'tcx>],
917 def_id2: DefId,
918 args2: &[ty::GenericArg<'tcx>],
919 ) -> (DiagStyledString, DiagStyledString) {
920 let mut values = (DiagStyledString::new(), DiagStyledString::new());
921
922 if def_id1 != def_id2 {
923 values.0.push_highlighted(self.tcx.def_path_str(def_id1).as_str());
924 values.1.push_highlighted(self.tcx.def_path_str(def_id2).as_str());
925 } else {
926 values.0.push_normal(self.tcx.item_name(def_id1).as_str());
927 values.1.push_normal(self.tcx.item_name(def_id2).as_str());
928 }
929
930 if args1.len() != args2.len() {
931 let (pre, post) = if args1.len() > 0 { ("<", ">") } else { ("", "") };
932 values.0.push_normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{1}{0}{2}",
args1.iter().map(|a|
a.to_string()).collect::<Vec<_>>().join(", "), pre, post))
})format!(
933 "{pre}{}{post}",
934 args1.iter().map(|a| a.to_string()).collect::<Vec<_>>().join(", ")
935 ));
936 let (pre, post) = if args2.len() > 0 { ("<", ">") } else { ("", "") };
937 values.1.push_normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{1}{0}{2}",
args2.iter().map(|a|
a.to_string()).collect::<Vec<_>>().join(", "), pre, post))
})format!(
938 "{pre}{}{post}",
939 args2.iter().map(|a| a.to_string()).collect::<Vec<_>>().join(", ")
940 ));
941 return values;
942 }
943
944 if args1.len() > 0 {
945 values.0.push_normal("<");
946 values.1.push_normal("<");
947 }
948 for (i, (a, b)) in std::iter::zip(args1, args2).enumerate() {
949 let a_str = a.to_string();
950 let b_str = b.to_string();
951 if let (Some(a), Some(b)) = (a.as_type(), b.as_type()) {
952 let (a, b) = self.cmp(a, b);
953 values.0.0.extend(a.0);
954 values.1.0.extend(b.0);
955 } else if a_str != b_str {
956 values.0.push_highlighted(a_str);
957 values.1.push_highlighted(b_str);
958 } else {
959 values.0.push_normal(a_str);
960 values.1.push_normal(b_str);
961 }
962 if i + 1 < args1.len() {
963 values.0.push_normal(", ");
964 values.1.push_normal(", ");
965 }
966 }
967 if args1.len() > 0 {
968 values.0.push_normal(">");
969 values.1.push_normal(">");
970 }
971 values
972 }
973
974 fn lifetime_display(&self, lifetime: Region<'_>) -> String {
975 let s = lifetime.to_string();
976 if s.is_empty() { "'_".to_string() } else { s }
977 }
978
979 fn compare_generics(
980 &self,
981 mut values: &mut (DiagStyledString, DiagStyledString),
982 sub1: &[ty::GenericArg<'tcx>],
983 sub2: &[ty::GenericArg<'tcx>],
984 ) {
985 let len = sub1.len();
986 if sub1.len() > 0 {
988 values.0.push_normal("<");
989 }
990 if sub2.len() > 0 {
991 values.1.push_normal("<");
992 }
993
994 if sub1.len() == sub2.len() {
995 for (i, (arg1, arg2)) in sub1.iter().zip(sub2).enumerate().take(len) {
996 self.push_comma(&mut values.0, &mut values.1, i);
997 match (arg1.kind(), arg2.kind()) {
998 (ty::GenericArgKind::Lifetime(l1), ty::GenericArgKind::Lifetime(l2)) => {
1015 let l1_str = self.lifetime_display(l1);
1016 let l2_str = self.lifetime_display(l2);
1017 if l1 != l2 {
1018 values.0.push_highlighted(l1_str);
1019 values.1.push_highlighted(l2_str);
1020 } else if l1.is_bound() || self.tcx.sess.opts.verbose {
1021 values.0.push_normal(l1_str);
1022 values.1.push_normal(l2_str);
1023 } else {
1024 values.0.push_normal("'_");
1025 values.1.push_normal("'_");
1026 }
1027 }
1028 (ty::GenericArgKind::Type(ta1), ty::GenericArgKind::Type(ta2)) => {
1029 if ta1 == ta2 && !self.tcx.sess.opts.verbose {
1030 values.0.push_normal("_");
1031 values.1.push_normal("_");
1032 } else {
1033 self.recurse(ta1, ta2, &mut values);
1034 }
1035 }
1036 (ty::GenericArgKind::Const(ca1), ty::GenericArgKind::Const(ca2)) => {
1046 self.maybe_highlight(ca1, ca2, &mut values, self.tcx);
1047 }
1048 _ => {
1051 values.0.push_normal(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", arg1))
})format!("{arg1}"));
1052 values.1.push_normal(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", arg2))
})format!("{arg2}"));
1053 }
1054 }
1055 }
1056 } else {
1057 for (value, args) in [(&mut values.0, sub1), (&mut values.1, sub2)] {
1059 for (i, arg) in args.iter().enumerate() {
1060 if i > 0 {
1061 value.push_normal(", ");
1062 }
1063 match arg.kind() {
1064 ty::GenericArgKind::Lifetime(l) => {
1065 let l_str = self.lifetime_display(l);
1066 if l.is_bound() || self.tcx.sess.opts.verbose {
1067 value.push_normal(l_str);
1068 } else {
1069 value.push_normal("'_");
1070 }
1071 }
1072 ty::GenericArgKind::Type(ty) => {
1073 if !self.tcx.sess.opts.verbose {
1074 value.push_normal("_");
1075 } else {
1076 value.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!("{0}", ty)) })format!("{ty}"));
1077 }
1078 }
1079 ty::GenericArgKind::Const(ca) => {
1080 value.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!("{0}", ca)) })format!("{ca}"));
1081 }
1082 }
1083 }
1084 }
1085 }
1086
1087 if sub1.len() > 0 {
1090 values.0.push_normal(">");
1091 }
1092 if sub2.len() > 0 {
1093 values.1.push_normal(">");
1094 }
1095 }
1096
1097 fn recurse(
1098 &self,
1099 t1: Ty<'tcx>,
1100 t2: Ty<'tcx>,
1101 values: &mut (DiagStyledString, DiagStyledString),
1102 ) {
1103 let (x1, x2) = self.cmp(t1, t2);
1104 (values.0).0.extend(x1.0);
1105 (values.1).0.extend(x2.0);
1106 }
1107
1108 fn maybe_highlight<T: Eq + ToString>(
1109 &self,
1110 t1: T,
1111 t2: T,
1112 (buf1, buf2): &mut (DiagStyledString, DiagStyledString),
1113 tcx: TyCtxt<'_>,
1114 ) {
1115 let highlight = t1 != t2;
1116 let (t1, t2) = if highlight || tcx.sess.opts.verbose {
1117 (t1.to_string(), t2.to_string())
1118 } else {
1119 ("_".into(), "_".into())
1121 };
1122 buf1.push(t1, highlight);
1123 buf2.push(t2, highlight);
1124 }
1125
1126 pub fn cmp(&self, t1: Ty<'tcx>, t2: Ty<'tcx>) -> (DiagStyledString, DiagStyledString) {
1129 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:1129",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(1129u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("cmp(t1={0}, t1.kind={1:?}, t2={2}, t2.kind={3:?})",
t1, t1.kind(), t2, t2.kind()) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("cmp(t1={}, t1.kind={:?}, t2={}, t2.kind={:?})", t1, t1.kind(), t2, t2.kind());
1130
1131 fn fmt_region<'tcx>(region: ty::Region<'tcx>) -> String {
1133 let mut r = region.to_string();
1134 if r == "'_" {
1135 r.clear();
1136 } else {
1137 r.push(' ');
1138 }
1139 ::alloc::__export::must_use({ ::alloc::fmt::format(format_args!("&{0}", r)) })format!("&{r}")
1140 }
1141
1142 fn push_ref<'tcx>(
1143 region: ty::Region<'tcx>,
1144 mutbl: hir::Mutability,
1145 s: &mut DiagStyledString,
1146 ) {
1147 s.push_highlighted(fmt_region(region));
1148 s.push_highlighted(mutbl.prefix_str());
1149 }
1150
1151 fn cmp_ty_refs<'tcx>(
1152 r1: ty::Region<'tcx>,
1153 mut1: hir::Mutability,
1154 r2: ty::Region<'tcx>,
1155 mut2: hir::Mutability,
1156 ss: &mut (DiagStyledString, DiagStyledString),
1157 ) {
1158 let (r1, r2) = (fmt_region(r1), fmt_region(r2));
1159 if r1 != r2 {
1160 ss.0.push_highlighted(r1);
1161 ss.1.push_highlighted(r2);
1162 } else {
1163 ss.0.push_normal(r1);
1164 ss.1.push_normal(r2);
1165 }
1166
1167 if mut1 != mut2 {
1168 ss.0.push_highlighted(mut1.prefix_str());
1169 ss.1.push_highlighted(mut2.prefix_str());
1170 } else {
1171 ss.0.push_normal(mut1.prefix_str());
1172 ss.1.push_normal(mut2.prefix_str());
1173 }
1174 }
1175
1176 match (t1.kind(), t2.kind()) {
1178 (&ty::Adt(def1, sub1), &ty::Adt(def2, sub2)) => {
1179 let did1 = def1.did();
1180 let did2 = def2.did();
1181
1182 let generics1 = self.tcx.generics_of(did1);
1183 let generics2 = self.tcx.generics_of(did2);
1184
1185 let non_default_after_default = generics1
1186 .check_concrete_type_after_default(self.tcx, sub1)
1187 || generics2.check_concrete_type_after_default(self.tcx, sub2);
1188 let sub_no_defaults_1 = if non_default_after_default {
1189 generics1.own_args(sub1)
1190 } else {
1191 generics1.own_args_no_defaults(self.tcx, sub1)
1192 };
1193 let sub_no_defaults_2 = if non_default_after_default {
1194 generics2.own_args(sub2)
1195 } else {
1196 generics2.own_args_no_defaults(self.tcx, sub2)
1197 };
1198 let mut values = (DiagStyledString::new(), DiagStyledString::new());
1199 let path1 = self.tcx.def_path_str(did1);
1200 let path2 = self.tcx.def_path_str(did2);
1201 if did1 == did2 {
1202 values.0.push_normal(self.tcx.item_name(did1).to_string());
1211 values.1.push_normal(self.tcx.item_name(did2).to_string());
1212
1213 let len1 = sub_no_defaults_1.len();
1216 let len2 = sub_no_defaults_2.len();
1217 let common_len = cmp::min(len1, len2);
1218 let remainder1 = &sub1[common_len..];
1219 let remainder2 = &sub2[common_len..];
1220 let common_default_params =
1221 iter::zip(remainder1.iter().rev(), remainder2.iter().rev())
1222 .filter(|(a, b)| a == b)
1223 .count();
1224 let len = sub1.len() - common_default_params;
1225 self.compare_generics(&mut values, &sub1[..len], &sub2[..len]);
1226 values
1227 } else {
1228 if self.cmp_type_arg(
1234 &mut values.0,
1235 &mut values.1,
1236 path1.clone(),
1237 sub_no_defaults_1,
1238 path2.clone(),
1239 t2,
1240 ) {
1241 return values;
1242 }
1243 if self.cmp_type_arg(
1249 &mut values.1,
1250 &mut values.0,
1251 path2,
1252 sub_no_defaults_2,
1253 path1,
1254 t1,
1255 ) {
1256 return values;
1257 }
1258
1259 let t1_str = t1.to_string();
1266 let t2_str = t2.to_string();
1267 let min_len = t1_str.len().min(t2_str.len());
1268
1269 const SEPARATOR: &str = "::";
1270 let separator_len = SEPARATOR.len();
1271 let split_idx: usize =
1272 iter::zip(t1_str.split(SEPARATOR), t2_str.split(SEPARATOR))
1273 .take_while(|(mod1_str, mod2_str)| mod1_str == mod2_str)
1274 .map(|(mod_str, _)| mod_str.len() + separator_len)
1275 .sum();
1276
1277 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:1277",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(1277u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&["message",
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("separator_len")
}> =
::tracing::__macro_support::FieldName::new("separator_len");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("split_idx")
}> =
::tracing::__macro_support::FieldName::new("split_idx");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("min_len")
}> =
::tracing::__macro_support::FieldName::new("min_len");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("cmp")
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&separator_len)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&split_idx)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&min_len)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(?separator_len, ?split_idx, ?min_len, "cmp");
1278
1279 if split_idx >= min_len {
1280 (
1282 DiagStyledString::highlighted(t1_str),
1283 DiagStyledString::highlighted(t2_str),
1284 )
1285 } else {
1286 let (common, uniq1) = t1_str.split_at(split_idx);
1287 let (_, uniq2) = t2_str.split_at(split_idx);
1288 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:1288",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(1288u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&["message",
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("common")
}> =
::tracing::__macro_support::FieldName::new("common");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("uniq1")
}> =
::tracing::__macro_support::FieldName::new("uniq1");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("uniq2")
}> =
::tracing::__macro_support::FieldName::new("uniq2");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("cmp")
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&common)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&uniq1)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&uniq2)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(?common, ?uniq1, ?uniq2, "cmp");
1289
1290 values.0.push_normal(common);
1291 values.0.push_highlighted(uniq1);
1292 values.1.push_normal(common);
1293 values.1.push_highlighted(uniq2);
1294
1295 values
1296 }
1297 }
1298 }
1299
1300 (&ty::Ref(r1, ref_ty1, mutbl1), &ty::Ref(r2, ref_ty2, mutbl2)) => {
1302 let mut values = (DiagStyledString::new(), DiagStyledString::new());
1303 cmp_ty_refs(r1, mutbl1, r2, mutbl2, &mut values);
1304 self.recurse(ref_ty1, ref_ty2, &mut values);
1305 values
1306 }
1307 (&ty::Ref(r1, ref_ty1, mutbl1), _) => {
1309 let mut values = (DiagStyledString::new(), DiagStyledString::new());
1310 push_ref(r1, mutbl1, &mut values.0);
1311 self.recurse(ref_ty1, t2, &mut values);
1312 values
1313 }
1314 (_, &ty::Ref(r2, ref_ty2, mutbl2)) => {
1315 let mut values = (DiagStyledString::new(), DiagStyledString::new());
1316 push_ref(r2, mutbl2, &mut values.1);
1317 self.recurse(t1, ref_ty2, &mut values);
1318 values
1319 }
1320
1321 (&ty::Tuple(args1), &ty::Tuple(args2)) if args1.len() == args2.len() => {
1323 let mut values = (DiagStyledString::normal("("), DiagStyledString::normal("("));
1324 let len = args1.len();
1325 for (i, (left, right)) in args1.iter().zip(args2).enumerate() {
1326 self.push_comma(&mut values.0, &mut values.1, i);
1327 self.recurse(left, right, &mut values);
1328 }
1329 if len == 1 {
1330 values.0.push_normal(",");
1332 values.1.push_normal(",");
1333 }
1334 values.0.push_normal(")");
1335 values.1.push_normal(")");
1336 values
1337 }
1338
1339 (ty::FnDef(did1, args1), ty::FnDef(did2, args2)) => {
1340 let args1 = args1.no_bound_vars().unwrap();
1341 let args2 = args2.no_bound_vars().unwrap();
1342
1343 let sig1 = self.tcx.fn_sig(*did1).instantiate(self.tcx, args1).skip_norm_wip();
1344 let sig2 = self.tcx.fn_sig(*did2).instantiate(self.tcx, args2).skip_norm_wip();
1345 self.cmp_fn_sig(sig1, Some((*did1, Some(args1))), sig2, Some((*did2, Some(args2))))
1346 }
1347
1348 (ty::FnDef(did1, args1), ty::FnPtr(sig_tys2, hdr2)) => {
1349 let args1 = args1.no_bound_vars().unwrap();
1350 let sig1 = self.tcx.fn_sig(*did1).instantiate(self.tcx, args1).skip_norm_wip();
1351 self.cmp_fn_sig(sig1, Some((*did1, Some(args1))), sig_tys2.with(*hdr2), None)
1352 }
1353
1354 (ty::FnPtr(sig_tys1, hdr1), ty::FnDef(did2, args2)) => {
1355 let args2 = args2.no_bound_vars().unwrap();
1356
1357 let sig2 = self.tcx.fn_sig(*did2).instantiate(self.tcx, args2).skip_norm_wip();
1358 self.cmp_fn_sig(sig_tys1.with(*hdr1), None, sig2, Some((*did2, Some(args2))))
1359 }
1360
1361 (ty::FnPtr(sig_tys1, hdr1), ty::FnPtr(sig_tys2, hdr2)) => {
1362 self.cmp_fn_sig(sig_tys1.with(*hdr1), None, sig_tys2.with(*hdr2), None)
1363 }
1364
1365 (ty::Alias(kind1, alias1), ty::Alias(kind2, alias2))
1366 if kind1 == kind2 && alias1 == alias2 && !self.tcx.sess.opts.verbose =>
1367 {
1368 let mut strs = (DiagStyledString::new(), DiagStyledString::new());
1369 strs.0.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!("_")) })format!("_"));
1370 strs.1.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!("_")) })format!("_"));
1371 strs
1372 }
1373
1374 (ty::Alias(kind1, alias1), ty::Alias(kind2, alias2)) if kind1 == kind2 => {
1375 let mut values = (DiagStyledString::new(), DiagStyledString::new());
1376 match (alias1.kind, alias2.kind) {
1377 (ty::Projection { def_id: def_id1 }, ty::Projection { def_id: def_id2 }) => {
1378 values.0.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!("<")) })format!("<"));
1380 values.1.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!("<")) })format!("<"));
1381 let (trait_ref1, args1) = alias1.trait_ref_and_own_args(self.tcx);
1382 let (trait_ref2, args2) = alias2.trait_ref_and_own_args(self.tcx);
1383 self.recurse(trait_ref1.self_ty(), trait_ref2.self_ty(), &mut values);
1384
1385 values.0.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!(" as ")) })format!(" as "));
1386 values.1.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!(" as ")) })format!(" as "));
1387 if trait_ref1.def_id == trait_ref2.def_id {
1388 if self.tcx.sess.opts.verbose {
1389 values
1390 .0
1391 .push_normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}",
trait_ref1.print_only_trait_name()))
})format!("{}", trait_ref1.print_only_trait_name()));
1392 values
1393 .1
1394 .push_normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}",
trait_ref2.print_only_trait_name()))
})format!("{}", trait_ref2.print_only_trait_name()));
1395 } else {
1396 {
let _guard = ForceTrimmedGuard::new();
{
values.0.push_normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}",
trait_ref1.print_only_trait_name()))
}));
values.1.push_normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}",
trait_ref2.print_only_trait_name()))
}));
}
}with_forced_trimmed_paths! {{
1397 values
1398 .0
1399 .push_normal(format!("{}", trait_ref1.print_only_trait_name()));
1400 values
1401 .1
1402 .push_normal(format!("{}", trait_ref2.print_only_trait_name()));
1403 }}
1404 }
1405 let args1 = &trait_ref1.args[1..];
1407 let args2 = &trait_ref2.args[1..];
1408 self.compare_generics(&mut values, args1, args2);
1409 } else {
1410 values
1411 .0
1412 .push_highlighted(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}",
trait_ref1.print_trait_sugared()))
})format!("{}", trait_ref1.print_trait_sugared()));
1413 values
1414 .1
1415 .push_highlighted(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}",
trait_ref2.print_trait_sugared()))
})format!("{}", trait_ref2.print_trait_sugared()));
1416 }
1417 values.0.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!(">::")) })format!(">::"));
1418 values.1.push_normal(::alloc::__export::must_use({ ::alloc::fmt::format(format_args!(">::")) })format!(">::"));
1419 let name1 = self.tcx.item_name(def_id1);
1420 let name2 = self.tcx.item_name(def_id2);
1421 if def_id1 == def_id2 {
1422 values.0.push_normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", name1))
})format!("{name1}"));
1423 values.1.push_normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", name2))
})format!("{name2}"));
1424 } else {
1425 values.0.push_highlighted(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", name1))
})format!("{name1}"));
1428 values.1.push_highlighted(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", name2))
})format!("{name2}"));
1429 }
1430 self.compare_generics(&mut values, args1, args2);
1431 }
1432 _ => {
1433 self.maybe_highlight(t1, t2, &mut values, self.tcx);
1434 }
1435 }
1436 values
1437 }
1438
1439 _ => {
1440 let mut strs = (DiagStyledString::new(), DiagStyledString::new());
1441 self.maybe_highlight(t1, t2, &mut strs, self.tcx);
1442 strs
1443 }
1444 }
1445 }
1446
1447 #[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("note_type_err",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(1456u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("cause")
}> =
::tracing::__macro_support::FieldName::new("cause");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("values")
}> =
::tracing::__macro_support::FieldName::new("values");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("terr")
}> =
::tracing::__macro_support::FieldName::new("terr");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("override_span")
}> =
::tracing::__macro_support::FieldName::new("override_span");
NAME.as_str()
}], ::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};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&values)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&terr)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&override_span)
as &dyn ::tracing::field::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: () = loop {};
return __tracing_attr_fake_return;
}
{
let span = override_span.unwrap_or(cause.span);
if let TypeError::CyclicTy(_) = terr { values = None; }
struct OpaqueTypesVisitor<'tcx> {
types: FxIndexMap<TyCategory, FxIndexSet<Span>>,
expected: FxIndexMap<TyCategory, FxIndexSet<Span>>,
found: FxIndexMap<TyCategory, FxIndexSet<Span>>,
ignore_span: Span,
tcx: TyCtxt<'tcx>,
}
impl<'tcx> OpaqueTypesVisitor<'tcx> {
fn visit_expected_found(tcx: TyCtxt<'tcx>,
expected: impl TypeVisitable<TyCtxt<'tcx>>,
found: impl TypeVisitable<TyCtxt<'tcx>>, ignore_span: Span)
-> Self {
let mut types_visitor =
OpaqueTypesVisitor {
types: Default::default(),
expected: Default::default(),
found: Default::default(),
ignore_span,
tcx,
};
expected.visit_with(&mut types_visitor);
std::mem::swap(&mut types_visitor.expected,
&mut types_visitor.types);
found.visit_with(&mut types_visitor);
std::mem::swap(&mut types_visitor.found,
&mut types_visitor.types);
types_visitor
}
fn report(&self, err: &mut Diag<'_>) {
self.add_labels_for_types(err, "expected", &self.expected);
self.add_labels_for_types(err, "found", &self.found);
}
fn add_labels_for_types(&self, err: &mut Diag<'_>,
target: &str,
types: &FxIndexMap<TyCategory, FxIndexSet<Span>>) {
for (kind, values) in types.iter() {
let count = values.len();
for &sp in values {
err.span_label(sp,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1} {2:#}{3}",
if count == 1 { "the " } else { "one of the " }, target,
kind, if count == 1 { "" } else { "s" }))
}));
}
}
}
}
impl<'tcx> ty::TypeVisitor<TyCtxt<'tcx>> for
OpaqueTypesVisitor<'tcx> {
fn visit_ty(&mut self, t: Ty<'tcx>) {
if let Some((kind, def_id)) =
TyCategory::from_ty(self.tcx, t) {
let span = self.tcx.def_span(def_id);
if !self.ignore_span.overlaps(span) &&
!span.is_desugaring(DesugaringKind::Async) {
self.types.entry(kind).or_default().insert(span);
}
}
t.super_visit_with(self)
}
}
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:1567",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(1567u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("note_type_err(diag={0:?})",
diag) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
enum Mismatch<'a> {
Variable(ty::error::ExpectedFound<Ty<'a>>),
Fixed(&'static str),
}
let (expected_found, exp_found, is_simple_error, values,
param_env) =
match values {
None => (None, Mismatch::Fixed("type"), false, None, None),
Some(ty::ParamEnvAnd { param_env, value: values }) => {
let mut values = self.resolve_vars_if_possible(values);
if self.next_trait_solver() {
values =
deeply_normalize_for_diagnostics(self, param_env, values);
}
let (is_simple_error, exp_found) =
match values {
ValuePairs::Terms(ExpectedFound { expected, found }) => {
match (expected.kind(), found.kind()) {
(ty::TermKind::Ty(expected), ty::TermKind::Ty(found)) => {
let is_simple_err =
expected.is_simple_text() && found.is_simple_text();
OpaqueTypesVisitor::visit_expected_found(self.tcx, expected,
found, span).report(diag);
(is_simple_err,
Mismatch::Variable(ExpectedFound { expected, found }))
}
(ty::TermKind::Const(_), ty::TermKind::Const(_)) => {
(false, Mismatch::Fixed("constant"))
}
_ => (false, Mismatch::Fixed("type")),
}
}
ValuePairs::PolySigs(ExpectedFound { expected, found }) => {
OpaqueTypesVisitor::visit_expected_found(self.tcx, expected,
found, span).report(diag);
(false, Mismatch::Fixed("signature"))
}
ValuePairs::TraitRefs(_) =>
(false, Mismatch::Fixed("trait")),
ValuePairs::Aliases(ExpectedFound { expected, .. }) => {
let def_id =
match expected.kind {
ty::AliasTermKind::ProjectionTy { def_id } => def_id.into(),
ty::AliasTermKind::InherentTy { def_id } => def_id.into(),
ty::AliasTermKind::OpaqueTy { def_id } => def_id.into(),
ty::AliasTermKind::FreeTy { def_id } => def_id.into(),
ty::AliasTermKind::AnonConst { def_id } => def_id.into(),
ty::AliasTermKind::ProjectionConst { def_id } =>
def_id.into(),
ty::AliasTermKind::FreeConst { def_id } => def_id.into(),
ty::AliasTermKind::InherentConst { def_id } =>
def_id.into(),
};
(false, Mismatch::Fixed(self.tcx.def_descr(def_id)))
}
ValuePairs::Regions(_) =>
(false, Mismatch::Fixed("lifetime")),
ValuePairs::ExistentialTraitRef(_) => {
(false, Mismatch::Fixed("existential trait ref"))
}
ValuePairs::ExistentialProjection(_) => {
(false, Mismatch::Fixed("existential projection"))
}
};
let Some(vals) =
self.values_str(values, cause,
diag.long_ty_path()) else {
diag.downgrade_to_delayed_bug();
return;
};
(Some(vals), exp_found, is_simple_error, Some(values),
Some(param_env))
}
};
let mut label_or_note =
|span: Span, msg: Cow<'static, str>|
{
if (prefer_label && is_simple_error) ||
&[span] == diag.span.primary_spans() {
diag.span_label(span, msg);
} else { diag.span_note(span, msg); }
};
if let Some((secondary_span, secondary_msg,
swap_secondary_and_primary)) = secondary_span {
if swap_secondary_and_primary {
let terr =
if let Some(infer::ValuePairs::Terms(ExpectedFound {
expected, .. })) = values {
Cow::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("expected this to be `{0}`",
expected))
}))
} else { terr.to_string(self.tcx) };
label_or_note(secondary_span, terr);
label_or_note(span, secondary_msg);
} else {
label_or_note(span, terr.to_string(self.tcx));
label_or_note(secondary_span, secondary_msg);
}
} else if let Some(values) = values &&
let Some((e, f)) = values.ty() &&
let TypeError::ArgumentSorts(..) | TypeError::Sorts(_) =
terr {
let e = self.tcx.erase_and_anonymize_regions(e);
let f = self.tcx.erase_and_anonymize_regions(f);
let expected =
{
let _guard = ForceTrimmedGuard::new();
e.sort_string(self.tcx)
};
let found =
{
let _guard = ForceTrimmedGuard::new();
f.sort_string(self.tcx)
};
if expected == found {
label_or_note(span, terr.to_string(self.tcx));
} else {
label_or_note(span,
Cow::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("expected {0}, found {1}",
expected, found))
})));
}
} else { label_or_note(span, terr.to_string(self.tcx)); }
if let Some(param_env) = param_env {
self.note_field_shadowed_by_private_candidate_in_cause(diag,
cause, param_env);
}
if self.check_and_note_conflicting_crates(diag, terr) { return; }
if let Some((expected, found)) = expected_found {
let (expected_label, found_label, exp_found) =
match exp_found {
Mismatch::Variable(ef) =>
(ef.expected.prefix_string(self.tcx),
ef.found.prefix_string(self.tcx), Some(ef)),
Mismatch::Fixed(s) => (s.into(), s.into(), None),
};
enum Similar<'tcx> {
Adts {
expected: ty::AdtDef<'tcx>,
found: ty::AdtDef<'tcx>,
},
PrimitiveFound {
expected: ty::AdtDef<'tcx>,
found: Ty<'tcx>,
},
PrimitiveExpected {
expected: Ty<'tcx>,
found: ty::AdtDef<'tcx>,
},
}
let similarity =
|ExpectedFound { expected, found }: ExpectedFound<Ty<'tcx>>|
{
if let ty::Adt(expected, _) = expected.kind() &&
let Some(primitive) = found.primitive_symbol() {
let path = self.tcx.def_path(expected.did()).data;
let name = path.last().unwrap().data.get_opt_name();
if name == Some(primitive) {
return Some(Similar::PrimitiveFound {
expected: *expected,
found,
});
}
} else if let Some(primitive) = expected.primitive_symbol()
&& let ty::Adt(found, _) = found.kind() {
let path = self.tcx.def_path(found.did()).data;
let name = path.last().unwrap().data.get_opt_name();
if name == Some(primitive) {
return Some(Similar::PrimitiveExpected {
expected,
found: *found,
});
}
} else if let ty::Adt(expected, _) = expected.kind() &&
let ty::Adt(found, _) = found.kind() {
if !expected.did().is_local() &&
expected.did().krate == found.did().krate {
return None;
}
let f_path = self.tcx.def_path(found.did()).data;
let e_path = self.tcx.def_path(expected.did()).data;
if let (Some(e_last), Some(f_last)) =
(e_path.last(), f_path.last()) && e_last == f_last {
return Some(Similar::Adts {
expected: *expected,
found: *found,
});
}
}
None
};
match terr {
TypeError::Sorts(values) if let Some(s) = similarity(values)
=> {
let diagnose_primitive =
|prim: Ty<'tcx>, shadow: Ty<'tcx>, defid: DefId,
diag: &mut Diag<'_>|
{
let name = shadow.sort_string(self.tcx);
diag.note(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}` and {1} have similar names, but are actually distinct types",
prim, name))
}));
diag.note(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("one `{0}` is a primitive defined by the language",
prim))
}));
let def_span = self.tcx.def_span(defid);
let msg =
if defid.is_local() {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the other {0} is defined in the current crate",
name))
})
} else {
let crate_name = self.tcx.crate_name(defid.krate);
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the other {0} is defined in crate `{1}`",
name, crate_name))
})
};
diag.span_note(def_span, msg);
};
let diagnose_adts =
|expected_adt: ty::AdtDef<'tcx>,
found_adt: ty::AdtDef<'tcx>, diag: &mut Diag<'_>|
{
let found_name = values.found.sort_string(self.tcx);
let expected_name = values.expected.sort_string(self.tcx);
let found_defid = found_adt.did();
let expected_defid = expected_adt.did();
diag.note(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} and {1} have similar names, but are actually distinct types",
found_name, expected_name))
}));
for (defid, name) in
[(found_defid, found_name), (expected_defid, expected_name)]
{
let def_span = self.tcx.def_span(defid);
let msg =
if found_defid.is_local() && expected_defid.is_local() {
let module =
self.tcx.parent_module_from_def_id(defid.expect_local()).to_def_id();
let module_name =
self.tcx.def_path(module).to_string_no_crate_verbose();
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} is defined in module `crate{1}` of the current crate",
name, module_name))
})
} else if defid.is_local() {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} is defined in the current crate",
name))
})
} else {
let crate_name = self.tcx.crate_name(defid.krate);
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} is defined in crate `{1}`",
name, crate_name))
})
};
diag.span_note(def_span, msg);
}
};
match s {
Similar::Adts { expected, found } =>
diagnose_adts(expected, found, diag),
Similar::PrimitiveFound { expected, found: prim } => {
diagnose_primitive(prim, values.expected, expected.did(),
diag)
}
Similar::PrimitiveExpected { expected: prim, found } => {
diagnose_primitive(prim, values.found, found.did(), diag)
}
}
}
TypeError::Sorts(values) => {
let extra =
expected == found &&
values.expected.sort_string(self.tcx) !=
values.found.sort_string(self.tcx);
let sort_string =
|ty: Ty<'tcx>|
match (extra, ty.kind()) {
(true,
ty::Alias(_, ty::AliasTy { kind: ty::Opaque { def_id }, ..
})) => {
let sm = self.tcx.sess.source_map();
let pos =
sm.lookup_char_pos(self.tcx.def_span(*def_id).lo());
DiagStyledString::normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" (opaque type at <{0}:{1}:{2}>)",
sm.filename_for_diagnostics(&pos.file.name), pos.line,
pos.col.to_usize() + 1))
}))
}
(true,
&ty::Alias(_, ty::AliasTy { kind: ty::Projection { def_id },
.. })) if self.tcx.is_impl_trait_in_trait(def_id) => {
let sm = self.tcx.sess.source_map();
let pos =
sm.lookup_char_pos(self.tcx.def_span(def_id).lo());
DiagStyledString::normal(::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" (trait associated opaque type at <{0}:{1}:{2}>)",
sm.filename_for_diagnostics(&pos.file.name), pos.line,
pos.col.to_usize() + 1))
}))
}
(true, _) => {
let mut s = DiagStyledString::normal(" (");
s.push_highlighted(ty.sort_string(self.tcx));
s.push_normal(")");
s
}
(false, _) => DiagStyledString::normal(""),
};
if !(values.expected.is_simple_text() &&
values.found.is_simple_text()) ||
(exp_found.is_some_and(|ef|
{
if !ef.expected.is_ty_or_numeric_infer() {
ef.expected != values.expected
} else if !ef.found.is_ty_or_numeric_infer() {
ef.found != values.found
} else { false }
})) {
if let Some(ExpectedFound { found: found_ty, .. }) =
exp_found && !self.tcx.ty_is_opaque_future(found_ty) {
diag.note_expected_found_extra(&expected_label, expected,
&found_label, found, sort_string(values.expected),
sort_string(values.found));
}
}
}
_ => {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:1884",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(1884u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("note_type_err: exp_found={0:?}, expected={1:?} found={2:?}",
exp_found, expected, found) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};
if !is_simple_error || terr.must_include_note() {
diag.note_expected_found(&expected_label, expected,
&found_label, found);
if let Some(ty::Closure(_, args)) =
exp_found.map(|expected_type_found|
expected_type_found.found.kind()) {
diag.highlighted_note(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[StringPart::normal("closure has signature: `"),
StringPart::highlighted(self.tcx.signature_unclosure(args.as_closure().sig(),
rustc_hir::Safety::Safe).to_string()),
StringPart::normal("`")])));
}
}
}
}
}
let exp_found =
match exp_found {
Mismatch::Variable(exp_found) => Some(exp_found),
Mismatch::Fixed(_) => None,
};
let exp_found =
match terr {
ty::error::TypeError::Sorts(terr) if
exp_found.is_some_and(|ef| terr.found == ef.found) => {
Some(terr)
}
_ => exp_found,
};
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:1924",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(1924u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("exp_found {0:?} terr {1:?} cause.code {2:?}",
exp_found, terr, cause.code()) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};
if let Some(exp_found) = exp_found {
let should_suggest_fixes =
if let ObligationCauseCode::Pattern { root_ty, .. } =
cause.code() {
self.same_type_modulo_infer(*root_ty, exp_found.expected)
} else { true };
if should_suggest_fixes &&
!#[allow(non_exhaustive_omitted_patterns)] match terr {
TypeError::RegionsInsufficientlyPolymorphic(..) => true,
_ => false,
} {
self.suggest_tuple_pattern(cause, &exp_found, diag);
self.suggest_accessing_field_where_appropriate(cause,
&exp_found, diag);
self.suggest_await_on_expect_found(cause, span, &exp_found,
diag);
self.suggest_function_pointers(cause, span, &exp_found,
terr, diag);
self.suggest_turning_stmt_into_expr(cause, &exp_found,
diag);
}
}
let body_owner_def_id =
(cause.body_def_id !=
CRATE_DEF_ID).then(|| cause.body_def_id.to_def_id());
self.note_and_explain_type_err(diag, terr, cause, span,
body_owner_def_id);
if let Some(exp_found) = exp_found &&
let exp_found = TypeError::Sorts(exp_found) &&
exp_found != terr {
self.note_and_explain_type_err(diag, exp_found, cause, span,
body_owner_def_id);
}
if let Some(ValuePairs::TraitRefs(exp_found)) = values &&
let ty::Closure(def_id, _) =
exp_found.expected.self_ty().kind() &&
let Some(def_id) = def_id.as_local() &&
terr.involves_regions() {
let span = self.tcx.def_span(def_id);
diag.span_note(span,
"this closure does not fulfill the lifetime requirements");
self.suggest_for_all_lifetime_closure(span,
self.tcx.hir_node_by_def_id(def_id), &exp_found, diag);
}
self.note_error_origin(diag, cause, exp_found, terr, param_env);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:1978",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(1978u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("diag")
}> =
::tracing::__macro_support::FieldName::new("diag");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&diag)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
}
}
}#[instrument(level = "debug", skip(self, diag, secondary_span, prefer_label))]
1457 pub fn note_type_err(
1458 &self,
1459 diag: &mut Diag<'_>,
1460 cause: &ObligationCause<'tcx>,
1461 secondary_span: Option<(Span, Cow<'static, str>, bool)>,
1462 mut values: Option<ty::ParamEnvAnd<'tcx, ValuePairs<'tcx>>>,
1463 terr: TypeError<'tcx>,
1464 prefer_label: bool,
1465 override_span: Option<Span>,
1466 ) {
1467 let span = override_span.unwrap_or(cause.span);
1472 if let TypeError::CyclicTy(_) = terr {
1475 values = None;
1476 }
1477 struct OpaqueTypesVisitor<'tcx> {
1478 types: FxIndexMap<TyCategory, FxIndexSet<Span>>,
1479 expected: FxIndexMap<TyCategory, FxIndexSet<Span>>,
1480 found: FxIndexMap<TyCategory, FxIndexSet<Span>>,
1481 ignore_span: Span,
1482 tcx: TyCtxt<'tcx>,
1483 }
1484
1485 impl<'tcx> OpaqueTypesVisitor<'tcx> {
1486 fn visit_expected_found(
1487 tcx: TyCtxt<'tcx>,
1488 expected: impl TypeVisitable<TyCtxt<'tcx>>,
1489 found: impl TypeVisitable<TyCtxt<'tcx>>,
1490 ignore_span: Span,
1491 ) -> Self {
1492 let mut types_visitor = OpaqueTypesVisitor {
1493 types: Default::default(),
1494 expected: Default::default(),
1495 found: Default::default(),
1496 ignore_span,
1497 tcx,
1498 };
1499 expected.visit_with(&mut types_visitor);
1503 std::mem::swap(&mut types_visitor.expected, &mut types_visitor.types);
1504 found.visit_with(&mut types_visitor);
1505 std::mem::swap(&mut types_visitor.found, &mut types_visitor.types);
1506 types_visitor
1507 }
1508
1509 fn report(&self, err: &mut Diag<'_>) {
1510 self.add_labels_for_types(err, "expected", &self.expected);
1511 self.add_labels_for_types(err, "found", &self.found);
1512 }
1513
1514 fn add_labels_for_types(
1515 &self,
1516 err: &mut Diag<'_>,
1517 target: &str,
1518 types: &FxIndexMap<TyCategory, FxIndexSet<Span>>,
1519 ) {
1520 for (kind, values) in types.iter() {
1521 let count = values.len();
1522 for &sp in values {
1523 err.span_label(
1524 sp,
1525 format!(
1526 "{}{} {:#}{}",
1527 if count == 1 { "the " } else { "one of the " },
1528 target,
1529 kind,
1530 pluralize!(count),
1531 ),
1532 );
1533 }
1534 }
1535 }
1536 }
1537
1538 impl<'tcx> ty::TypeVisitor<TyCtxt<'tcx>> for OpaqueTypesVisitor<'tcx> {
1539 fn visit_ty(&mut self, t: Ty<'tcx>) {
1540 if let Some((kind, def_id)) = TyCategory::from_ty(self.tcx, t) {
1541 let span = self.tcx.def_span(def_id);
1542 if !self.ignore_span.overlaps(span)
1558 && !span.is_desugaring(DesugaringKind::Async)
1559 {
1560 self.types.entry(kind).or_default().insert(span);
1561 }
1562 }
1563 t.super_visit_with(self)
1564 }
1565 }
1566
1567 debug!("note_type_err(diag={:?})", diag);
1568 enum Mismatch<'a> {
1569 Variable(ty::error::ExpectedFound<Ty<'a>>),
1570 Fixed(&'static str),
1571 }
1572 let (expected_found, exp_found, is_simple_error, values, param_env) = match values {
1573 None => (None, Mismatch::Fixed("type"), false, None, None),
1574 Some(ty::ParamEnvAnd { param_env, value: values }) => {
1575 let mut values = self.resolve_vars_if_possible(values);
1576 if self.next_trait_solver() {
1577 values = deeply_normalize_for_diagnostics(self, param_env, values);
1578 }
1579 let (is_simple_error, exp_found) = match values {
1580 ValuePairs::Terms(ExpectedFound { expected, found }) => {
1581 match (expected.kind(), found.kind()) {
1582 (ty::TermKind::Ty(expected), ty::TermKind::Ty(found)) => {
1583 let is_simple_err =
1584 expected.is_simple_text() && found.is_simple_text();
1585 OpaqueTypesVisitor::visit_expected_found(
1586 self.tcx, expected, found, span,
1587 )
1588 .report(diag);
1589
1590 (
1591 is_simple_err,
1592 Mismatch::Variable(ExpectedFound { expected, found }),
1593 )
1594 }
1595 (ty::TermKind::Const(_), ty::TermKind::Const(_)) => {
1596 (false, Mismatch::Fixed("constant"))
1597 }
1598 _ => (false, Mismatch::Fixed("type")),
1599 }
1600 }
1601 ValuePairs::PolySigs(ExpectedFound { expected, found }) => {
1602 OpaqueTypesVisitor::visit_expected_found(self.tcx, expected, found, span)
1603 .report(diag);
1604 (false, Mismatch::Fixed("signature"))
1605 }
1606 ValuePairs::TraitRefs(_) => (false, Mismatch::Fixed("trait")),
1607 ValuePairs::Aliases(ExpectedFound { expected, .. }) => {
1608 let def_id = match expected.kind {
1609 ty::AliasTermKind::ProjectionTy { def_id } => def_id.into(),
1610 ty::AliasTermKind::InherentTy { def_id } => def_id.into(),
1611 ty::AliasTermKind::OpaqueTy { def_id } => def_id.into(),
1612 ty::AliasTermKind::FreeTy { def_id } => def_id.into(),
1613 ty::AliasTermKind::AnonConst { def_id } => def_id.into(),
1614 ty::AliasTermKind::ProjectionConst { def_id } => def_id.into(),
1615 ty::AliasTermKind::FreeConst { def_id } => def_id.into(),
1616 ty::AliasTermKind::InherentConst { def_id } => def_id.into(),
1617 };
1618 (false, Mismatch::Fixed(self.tcx.def_descr(def_id)))
1619 }
1620 ValuePairs::Regions(_) => (false, Mismatch::Fixed("lifetime")),
1621 ValuePairs::ExistentialTraitRef(_) => {
1622 (false, Mismatch::Fixed("existential trait ref"))
1623 }
1624 ValuePairs::ExistentialProjection(_) => {
1625 (false, Mismatch::Fixed("existential projection"))
1626 }
1627 };
1628 let Some(vals) = self.values_str(values, cause, diag.long_ty_path()) else {
1629 diag.downgrade_to_delayed_bug();
1633 return;
1634 };
1635 (Some(vals), exp_found, is_simple_error, Some(values), Some(param_env))
1636 }
1637 };
1638
1639 let mut label_or_note = |span: Span, msg: Cow<'static, str>| {
1640 if (prefer_label && is_simple_error) || &[span] == diag.span.primary_spans() {
1641 diag.span_label(span, msg);
1642 } else {
1643 diag.span_note(span, msg);
1644 }
1645 };
1646 if let Some((secondary_span, secondary_msg, swap_secondary_and_primary)) = secondary_span {
1647 if swap_secondary_and_primary {
1648 let terr = if let Some(infer::ValuePairs::Terms(ExpectedFound {
1649 expected, ..
1650 })) = values
1651 {
1652 Cow::from(format!("expected this to be `{expected}`"))
1653 } else {
1654 terr.to_string(self.tcx)
1655 };
1656 label_or_note(secondary_span, terr);
1657 label_or_note(span, secondary_msg);
1658 } else {
1659 label_or_note(span, terr.to_string(self.tcx));
1660 label_or_note(secondary_span, secondary_msg);
1661 }
1662 } else if let Some(values) = values
1663 && let Some((e, f)) = values.ty()
1664 && let TypeError::ArgumentSorts(..) | TypeError::Sorts(_) = terr
1665 {
1666 let e = self.tcx.erase_and_anonymize_regions(e);
1667 let f = self.tcx.erase_and_anonymize_regions(f);
1668 let expected = with_forced_trimmed_paths!(e.sort_string(self.tcx));
1669 let found = with_forced_trimmed_paths!(f.sort_string(self.tcx));
1670 if expected == found {
1671 label_or_note(span, terr.to_string(self.tcx));
1672 } else {
1673 label_or_note(span, Cow::from(format!("expected {expected}, found {found}")));
1674 }
1675 } else {
1676 label_or_note(span, terr.to_string(self.tcx));
1677 }
1678
1679 if let Some(param_env) = param_env {
1680 self.note_field_shadowed_by_private_candidate_in_cause(diag, cause, param_env);
1681 }
1682
1683 if self.check_and_note_conflicting_crates(diag, terr) {
1684 return;
1685 }
1686
1687 if let Some((expected, found)) = expected_found {
1688 let (expected_label, found_label, exp_found) = match exp_found {
1689 Mismatch::Variable(ef) => (
1690 ef.expected.prefix_string(self.tcx),
1691 ef.found.prefix_string(self.tcx),
1692 Some(ef),
1693 ),
1694 Mismatch::Fixed(s) => (s.into(), s.into(), None),
1695 };
1696
1697 enum Similar<'tcx> {
1698 Adts { expected: ty::AdtDef<'tcx>, found: ty::AdtDef<'tcx> },
1699 PrimitiveFound { expected: ty::AdtDef<'tcx>, found: Ty<'tcx> },
1700 PrimitiveExpected { expected: Ty<'tcx>, found: ty::AdtDef<'tcx> },
1701 }
1702
1703 let similarity = |ExpectedFound { expected, found }: ExpectedFound<Ty<'tcx>>| {
1704 if let ty::Adt(expected, _) = expected.kind()
1705 && let Some(primitive) = found.primitive_symbol()
1706 {
1707 let path = self.tcx.def_path(expected.did()).data;
1708 let name = path.last().unwrap().data.get_opt_name();
1709 if name == Some(primitive) {
1710 return Some(Similar::PrimitiveFound { expected: *expected, found });
1711 }
1712 } else if let Some(primitive) = expected.primitive_symbol()
1713 && let ty::Adt(found, _) = found.kind()
1714 {
1715 let path = self.tcx.def_path(found.did()).data;
1716 let name = path.last().unwrap().data.get_opt_name();
1717 if name == Some(primitive) {
1718 return Some(Similar::PrimitiveExpected { expected, found: *found });
1719 }
1720 } else if let ty::Adt(expected, _) = expected.kind()
1721 && let ty::Adt(found, _) = found.kind()
1722 {
1723 if !expected.did().is_local() && expected.did().krate == found.did().krate {
1724 return None;
1728 }
1729 let f_path = self.tcx.def_path(found.did()).data;
1730 let e_path = self.tcx.def_path(expected.did()).data;
1731
1732 if let (Some(e_last), Some(f_last)) = (e_path.last(), f_path.last())
1733 && e_last == f_last
1734 {
1735 return Some(Similar::Adts { expected: *expected, found: *found });
1736 }
1737 }
1738 None
1739 };
1740
1741 match terr {
1742 TypeError::Sorts(values) if let Some(s) = similarity(values) => {
1744 let diagnose_primitive =
1745 |prim: Ty<'tcx>, shadow: Ty<'tcx>, defid: DefId, diag: &mut Diag<'_>| {
1746 let name = shadow.sort_string(self.tcx);
1747 diag.note(format!(
1748 "`{prim}` and {name} have similar names, but are actually distinct types"
1749 ));
1750 diag.note(format!(
1751 "one `{prim}` is a primitive defined by the language",
1752 ));
1753 let def_span = self.tcx.def_span(defid);
1754 let msg = if defid.is_local() {
1755 format!("the other {name} is defined in the current crate")
1756 } else {
1757 let crate_name = self.tcx.crate_name(defid.krate);
1758 format!("the other {name} is defined in crate `{crate_name}`")
1759 };
1760 diag.span_note(def_span, msg);
1761 };
1762
1763 let diagnose_adts =
1764 |expected_adt: ty::AdtDef<'tcx>,
1765 found_adt: ty::AdtDef<'tcx>,
1766 diag: &mut Diag<'_>| {
1767 let found_name = values.found.sort_string(self.tcx);
1768 let expected_name = values.expected.sort_string(self.tcx);
1769
1770 let found_defid = found_adt.did();
1771 let expected_defid = expected_adt.did();
1772
1773 diag.note(format!("{found_name} and {expected_name} have similar names, but are actually distinct types"));
1774 for (defid, name) in
1775 [(found_defid, found_name), (expected_defid, expected_name)]
1776 {
1777 let def_span = self.tcx.def_span(defid);
1778
1779 let msg = if found_defid.is_local() && expected_defid.is_local() {
1780 let module = self
1781 .tcx
1782 .parent_module_from_def_id(defid.expect_local())
1783 .to_def_id();
1784 let module_name =
1785 self.tcx.def_path(module).to_string_no_crate_verbose();
1786 format!(
1787 "{name} is defined in module `crate{module_name}` of the current crate"
1788 )
1789 } else if defid.is_local() {
1790 format!("{name} is defined in the current crate")
1791 } else {
1792 let crate_name = self.tcx.crate_name(defid.krate);
1793 format!("{name} is defined in crate `{crate_name}`")
1794 };
1795 diag.span_note(def_span, msg);
1796 }
1797 };
1798
1799 match s {
1800 Similar::Adts { expected, found } => diagnose_adts(expected, found, diag),
1801 Similar::PrimitiveFound { expected, found: prim } => {
1802 diagnose_primitive(prim, values.expected, expected.did(), diag)
1803 }
1804 Similar::PrimitiveExpected { expected: prim, found } => {
1805 diagnose_primitive(prim, values.found, found.did(), diag)
1806 }
1807 }
1808 }
1809 TypeError::Sorts(values) => {
1810 let extra = expected == found
1811 && values.expected.sort_string(self.tcx)
1815 != values.found.sort_string(self.tcx);
1816 let sort_string = |ty: Ty<'tcx>| match (extra, ty.kind()) {
1817 (true, ty::Alias(_, ty::AliasTy { kind: ty::Opaque { def_id }, .. })) => {
1818 let sm = self.tcx.sess.source_map();
1819 let pos = sm.lookup_char_pos(self.tcx.def_span(*def_id).lo());
1820 DiagStyledString::normal(format!(
1821 " (opaque type at <{}:{}:{}>)",
1822 sm.filename_for_diagnostics(&pos.file.name),
1823 pos.line,
1824 pos.col.to_usize() + 1,
1825 ))
1826 }
1827 (
1828 true,
1829 &ty::Alias(_, ty::AliasTy { kind: ty::Projection { def_id }, .. }),
1830 ) if self.tcx.is_impl_trait_in_trait(def_id) => {
1831 let sm = self.tcx.sess.source_map();
1832 let pos = sm.lookup_char_pos(self.tcx.def_span(def_id).lo());
1833 DiagStyledString::normal(format!(
1834 " (trait associated opaque type at <{}:{}:{}>)",
1835 sm.filename_for_diagnostics(&pos.file.name),
1836 pos.line,
1837 pos.col.to_usize() + 1,
1838 ))
1839 }
1840 (true, _) => {
1841 let mut s = DiagStyledString::normal(" (");
1842 s.push_highlighted(ty.sort_string(self.tcx));
1843 s.push_normal(")");
1844 s
1845 }
1846 (false, _) => DiagStyledString::normal(""),
1847 };
1848 if !(values.expected.is_simple_text() && values.found.is_simple_text())
1849 || (exp_found.is_some_and(|ef| {
1850 if !ef.expected.is_ty_or_numeric_infer() {
1855 ef.expected != values.expected
1856 } else if !ef.found.is_ty_or_numeric_infer() {
1857 ef.found != values.found
1858 } else {
1859 false
1860 }
1861 }))
1862 {
1863 if let Some(ExpectedFound { found: found_ty, .. }) = exp_found
1864 && !self.tcx.ty_is_opaque_future(found_ty)
1865 {
1866 diag.note_expected_found_extra(
1873 &expected_label,
1874 expected,
1875 &found_label,
1876 found,
1877 sort_string(values.expected),
1878 sort_string(values.found),
1879 );
1880 }
1881 }
1882 }
1883 _ => {
1884 debug!(
1885 "note_type_err: exp_found={:?}, expected={:?} found={:?}",
1886 exp_found, expected, found
1887 );
1888 if !is_simple_error || terr.must_include_note() {
1889 diag.note_expected_found(&expected_label, expected, &found_label, found);
1890
1891 if let Some(ty::Closure(_, args)) =
1892 exp_found.map(|expected_type_found| expected_type_found.found.kind())
1893 {
1894 diag.highlighted_note(vec![
1895 StringPart::normal("closure has signature: `"),
1896 StringPart::highlighted(
1897 self.tcx
1898 .signature_unclosure(
1899 args.as_closure().sig(),
1900 rustc_hir::Safety::Safe,
1901 )
1902 .to_string(),
1903 ),
1904 StringPart::normal("`"),
1905 ]);
1906 }
1907 }
1908 }
1909 }
1910 }
1911 let exp_found = match exp_found {
1912 Mismatch::Variable(exp_found) => Some(exp_found),
1913 Mismatch::Fixed(_) => None,
1914 };
1915 let exp_found = match terr {
1916 ty::error::TypeError::Sorts(terr)
1918 if exp_found.is_some_and(|ef| terr.found == ef.found) =>
1919 {
1920 Some(terr)
1921 }
1922 _ => exp_found,
1923 };
1924 debug!("exp_found {:?} terr {:?} cause.code {:?}", exp_found, terr, cause.code());
1925 if let Some(exp_found) = exp_found {
1926 let should_suggest_fixes =
1927 if let ObligationCauseCode::Pattern { root_ty, .. } = cause.code() {
1928 self.same_type_modulo_infer(*root_ty, exp_found.expected)
1931 } else {
1932 true
1933 };
1934
1935 if should_suggest_fixes
1939 && !matches!(terr, TypeError::RegionsInsufficientlyPolymorphic(..))
1940 {
1941 self.suggest_tuple_pattern(cause, &exp_found, diag);
1942 self.suggest_accessing_field_where_appropriate(cause, &exp_found, diag);
1943 self.suggest_await_on_expect_found(cause, span, &exp_found, diag);
1944 self.suggest_function_pointers(cause, span, &exp_found, terr, diag);
1945 self.suggest_turning_stmt_into_expr(cause, &exp_found, diag);
1946 }
1947 }
1948
1949 let body_owner_def_id =
1950 (cause.body_def_id != CRATE_DEF_ID).then(|| cause.body_def_id.to_def_id());
1951 self.note_and_explain_type_err(diag, terr, cause, span, body_owner_def_id);
1952 if let Some(exp_found) = exp_found
1953 && let exp_found = TypeError::Sorts(exp_found)
1954 && exp_found != terr
1955 {
1956 self.note_and_explain_type_err(diag, exp_found, cause, span, body_owner_def_id);
1957 }
1958
1959 if let Some(ValuePairs::TraitRefs(exp_found)) = values
1960 && let ty::Closure(def_id, _) = exp_found.expected.self_ty().kind()
1961 && let Some(def_id) = def_id.as_local()
1962 && terr.involves_regions()
1963 {
1964 let span = self.tcx.def_span(def_id);
1965 diag.span_note(span, "this closure does not fulfill the lifetime requirements");
1966 self.suggest_for_all_lifetime_closure(
1967 span,
1968 self.tcx.hir_node_by_def_id(def_id),
1969 &exp_found,
1970 diag,
1971 );
1972 }
1973
1974 self.note_error_origin(diag, cause, exp_found, terr, param_env);
1977
1978 debug!(?diag);
1979 }
1980
1981 pub(crate) fn type_error_additional_suggestions(
1982 &self,
1983 trace: &TypeTrace<'tcx>,
1984 terr: TypeError<'tcx>,
1985 long_ty_path: &mut Option<PathBuf>,
1986 ) -> Vec<TypeErrorAdditionalDiags> {
1987 let mut suggestions = Vec::new();
1988 let span = trace.cause.span;
1989 let values = self.resolve_vars_if_possible(trace.values);
1990 if let Some((expected, found)) = values.ty() {
1991 match (expected.kind(), found.kind()) {
1992 (ty::Tuple(_), ty::Tuple(_)) => {}
1993 (ty::Tuple(fields), _) => {
1997 suggestions.extend(self.suggest_wrap_to_build_a_tuple(span, found, fields))
1998 }
1999 (ty::Uint(ty::UintTy::U8), ty::Char) => {
2003 if let Ok(code) = self.tcx.sess.source_map().span_to_snippet(span)
2004 && let Some(code) = code.strip_circumfix('\'', '\'')
2005 && !code.starts_with("\\u")
2007 && code.chars().next().is_some_and(|c| c.is_ascii())
2009 {
2010 suggestions.push(TypeErrorAdditionalDiags::MeantByteLiteral {
2011 span,
2012 code: escape_literal(code),
2013 })
2014 }
2015 }
2016 (ty::Char, ty::Ref(_, r, _)) if r.is_str() => {
2020 if let Ok(code) = self.tcx.sess.source_map().span_to_snippet(span)
2021 && let Some(code) = code.strip_circumfix('"', '"')
2022 && code.chars().count() == 1
2023 {
2024 suggestions.push(TypeErrorAdditionalDiags::MeantCharLiteral {
2025 span,
2026 code: escape_literal(code),
2027 })
2028 }
2029 }
2030 (ty::Ref(_, r, _), ty::Char) if r.is_str() => {
2033 if let Ok(code) = self.tcx.sess.source_map().span_to_snippet(span)
2034 && code.starts_with("'")
2035 && code.ends_with("'")
2036 {
2037 suggestions.push(TypeErrorAdditionalDiags::MeantStrLiteral {
2038 start: span.with_hi(span.lo() + BytePos(1)),
2039 end: span.with_lo(span.hi() - BytePos(1)),
2040 });
2041 }
2042 }
2043 (ty::Bool, ty::Tuple(list)) => {
2046 if list.len() == 0 {
2047 suggestions.extend(self.suggest_let_for_letchains(&trace.cause, span));
2048 }
2049 }
2050 (ty::Array(_, _), ty::Array(_, _)) => {
2051 suggestions.extend(self.suggest_specify_actual_length(terr, trace, span))
2052 }
2053 _ => {}
2054 }
2055 }
2056 let code = trace.cause.code();
2057 if let &(ObligationCauseCode::MatchExpressionArm(MatchExpressionArmCause {
2058 source, ..
2059 })
2060 | ObligationCauseCode::BlockTailExpression(.., source)) = code
2061 && let hir::MatchSource::TryDesugar(_) = source
2062 && let Some((expected_ty, found_ty)) =
2063 self.values_str(trace.values, &trace.cause, long_ty_path)
2064 {
2065 suggestions.push(TypeErrorAdditionalDiags::TryCannotConvert {
2066 found: found_ty.content(),
2067 expected: expected_ty.content(),
2068 });
2069 }
2070 suggestions
2071 }
2072
2073 fn suggest_specify_actual_length(
2074 &self,
2075 terr: TypeError<'tcx>,
2076 trace: &TypeTrace<'tcx>,
2077 span: Span,
2078 ) -> Option<TypeErrorAdditionalDiags> {
2079 let TypeError::ArraySize(sz) = terr else {
2080 return None;
2081 };
2082 let tykind = match self.tcx.hir_node_by_def_id(trace.cause.body_def_id) {
2083 hir::Node::Item(hir::Item {
2084 kind: hir::ItemKind::Fn { body: body_id, .. }, ..
2085 }) => {
2086 let body = self.tcx.hir_body(*body_id);
2087 struct LetVisitor {
2088 span: Span,
2089 }
2090 impl<'v> Visitor<'v> for LetVisitor {
2091 type Result = ControlFlow<&'v hir::TyKind<'v>>;
2092 fn visit_stmt(&mut self, s: &'v hir::Stmt<'v>) -> Self::Result {
2093 if let hir::Stmt {
2096 kind:
2097 hir::StmtKind::Let(hir::LetStmt {
2098 init: Some(hir::Expr { span: init_span, .. }),
2099 ty: Some(array_ty),
2100 ..
2101 }),
2102 ..
2103 } = s
2104 && init_span == &self.span
2105 {
2106 ControlFlow::Break(&array_ty.peel_refs().kind)
2107 } else {
2108 ControlFlow::Continue(())
2109 }
2110 }
2111 }
2112 LetVisitor { span }.visit_body(body).break_value()
2113 }
2114 hir::Node::Item(hir::Item { kind: hir::ItemKind::Const(_, _, ty, _), .. }) => {
2115 Some(&ty.peel_refs().kind)
2116 }
2117 _ => None,
2118 };
2119 if let Some(tykind) = tykind
2120 && let hir::TyKind::Array(_, length_arg) = tykind
2121 && let Some(length_val) = sz.found.try_to_target_usize(self.tcx)
2122 {
2123 Some(TypeErrorAdditionalDiags::ConsiderSpecifyingLength {
2124 span: length_arg.span,
2125 length: length_val,
2126 })
2127 } else {
2128 None
2129 }
2130 }
2131
2132 fn check_on_type_error_attribute(
2133 &self,
2134 expected_ty: Ty<'tcx>,
2135 found_ty: Ty<'tcx>,
2136 ) -> ThinVec<String> {
2137 let mut seen = FxHashSet::default();
2138 let mut unique_notes: ThinVec<String> = ThinVec::new();
2139
2140 if let ty::Adt(item_def, args) = found_ty.kind() {
2142 if let Some(Some(directive)) =
2143 {
{
'done:
{
for i in
::rustc_hir::attrs::HasAttrs::get_attrs(item_def.did(),
&self.tcx) {
#[allow(unused_imports)]
use ::rustc_hir::attrs::AttributeKind::*;
let i: &::rustc_hir::Attribute = i;
match i {
::rustc_hir::Attribute::Parsed(OnTypeError { directive, ..
}) => {
break 'done Some(directive);
}
::rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}
}find_attr!(self.tcx, item_def.did(), OnTypeError { directive, .. } => directive)
2144 {
2145 let notes = self.format_on_type_error_notes(
2146 directive,
2147 args,
2148 item_def.clone(),
2149 expected_ty,
2150 found_ty,
2151 );
2152
2153 for note in notes {
2154 if seen.insert(note.clone()) {
2155 unique_notes.push(note);
2156 }
2157 }
2158 }
2159 }
2160
2161 if let ty::Adt(item_def, args) = expected_ty.kind() {
2163 if let Some(Some(directive)) =
2164 {
{
'done:
{
for i in
::rustc_hir::attrs::HasAttrs::get_attrs(item_def.did(),
&self.tcx) {
#[allow(unused_imports)]
use ::rustc_hir::attrs::AttributeKind::*;
let i: &::rustc_hir::Attribute = i;
match i {
::rustc_hir::Attribute::Parsed(OnTypeError { directive, ..
}) => {
break 'done Some(directive);
}
::rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}
}find_attr!(self.tcx, item_def.did(), OnTypeError { directive, .. } => directive)
2165 {
2166 let notes = self.format_on_type_error_notes(
2167 directive,
2168 args,
2169 item_def.clone(),
2170 expected_ty,
2171 found_ty,
2172 );
2173
2174 for note in notes {
2175 if seen.insert(note.clone()) {
2176 unique_notes.push(note);
2177 }
2178 }
2179 }
2180 }
2181
2182 unique_notes
2183 }
2184
2185 fn format_on_type_error_notes(
2186 &self,
2187 directive: &Directive,
2188 args: &ty::GenericArgsRef<'tcx>,
2189 item_def: ty::AdtDef<'tcx>,
2190 expected_ty: Ty<'tcx>,
2191 found_ty: Ty<'tcx>,
2192 ) -> ThinVec<String> {
2193 let item_name = self.tcx.item_name(item_def.did()).to_string();
2194 let generic_args: Vec<_> = self
2195 .tcx
2196 .generics_of(item_def.did())
2197 .own_params
2198 .iter()
2199 .filter_map(|param| Some((param.name, args[param.index as usize].to_string())))
2200 .collect();
2201
2202 let format_args = FormatArgs {
2203 this: item_name,
2204 generic_args,
2205 found: found_ty.to_string(),
2206 expected: expected_ty.to_string(),
2207 ..
2208 };
2209 let CustomDiagnostic { notes, .. } = directive.eval(None, &format_args);
2210
2211 notes.into()
2212 }
2213
2214 pub fn report_and_explain_type_error(
2215 &self,
2216 mut trace: TypeTrace<'tcx>,
2217 param_env: ty::ParamEnv<'tcx>,
2218 terr: TypeError<'tcx>,
2219 ) -> Diag<'a> {
2220 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs:2220",
"rustc_trait_selection::error_reporting::infer",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs"),
::tracing_core::__macro_support::Option::Some(2220u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::error_reporting::infer"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("report_and_explain_type_error(trace={0:?}, terr={1:?})",
trace, terr) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("report_and_explain_type_error(trace={:?}, terr={:?})", trace, terr);
2221
2222 let span = trace.cause.span;
2223 let mut path = None;
2224
2225 self.simplify_pin_macro_arg_ty_mismatch(&mut trace);
2226
2227 let on_type_error_notes = if let Some((expected_ty, found_ty)) = trace.values.ty() {
2229 self.check_on_type_error_attribute(expected_ty, found_ty)
2230 } else {
2231 ThinVec::new()
2232 };
2233
2234 let failure_code = trace.cause.as_failure_code_diag(
2235 terr,
2236 span,
2237 self.type_error_additional_suggestions(&trace, terr, &mut path),
2238 );
2239 let mut diag = self.dcx().create_err(failure_code);
2240 *diag.long_ty_path() = path;
2241
2242 for note in on_type_error_notes {
2244 diag.note(note);
2245 }
2246
2247 self.note_type_err(
2248 &mut diag,
2249 &trace.cause,
2250 None,
2251 Some(param_env.and(trace.values)),
2252 terr,
2253 false,
2254 None,
2255 );
2256 diag
2257 }
2258
2259 fn simplify_pin_macro_arg_ty_mismatch(&self, trace: &mut TypeTrace<'tcx>) {
2263 if let Some((expected_ty, found_ty)) = trace.values.ty()
2266 && let ty::Ref(_, expected_ty_kind_inside_mut, Mutability::Mut) = expected_ty.kind()
2267 && let ty::Adt(expected_adt, expected_generics) = expected_ty_kind_inside_mut.kind()
2268 && self.tcx.is_diagnostic_item(sym::PinMacroHelper, expected_adt.did())
2269 && let ty::Ref(_, found_ty_kind_inside_mut, Mutability::Mut) = found_ty.kind()
2270 && let ty::Adt(found_adt, found_generics) = found_ty_kind_inside_mut.kind()
2271 && self.tcx.is_diagnostic_item(sym::PinMacroHelper, found_adt.did())
2272 {
2273 let [expected_generic] = expected_generics
2274 .as_slice()
2275 .try_into()
2276 .expect("PinMacroHelper should only have one generic");
2277 let [found_generic] = found_generics
2278 .as_slice()
2279 .try_into()
2280 .expect("PinMacroHelper should only have one generic");
2281 let expected_ty_inner =
2282 expected_generic.as_type().expect("PinMacroHelper should have a generic type");
2283 let found_ty_inner =
2284 found_generic.as_type().expect("PinMacroHelper should have a generic type");
2285 trace.values = ValuePairs::Terms(ExpectedFound::new(
2286 expected_ty_inner.into(),
2287 found_ty_inner.into(),
2288 ));
2289 }
2290 }
2291
2292 fn suggest_wrap_to_build_a_tuple(
2293 &self,
2294 span: Span,
2295 found: Ty<'tcx>,
2296 expected_fields: &List<Ty<'tcx>>,
2297 ) -> Option<TypeErrorAdditionalDiags> {
2298 let [expected_tup_elem] = expected_fields[..] else { return None };
2299
2300 if !self.same_type_modulo_infer(expected_tup_elem, found) {
2301 return None;
2302 }
2303
2304 let Ok(code) = self.tcx.sess.source_map().span_to_snippet(span) else { return None };
2305
2306 let sugg = if code.starts_with('(') && code.ends_with(')') {
2307 let before_close = span.hi() - BytePos::from_u32(1);
2308 TypeErrorAdditionalDiags::TupleOnlyComma {
2309 span: span.with_hi(before_close).shrink_to_hi(),
2310 }
2311 } else {
2312 TypeErrorAdditionalDiags::TupleAlsoParentheses {
2313 span_low: span.shrink_to_lo(),
2314 span_high: span.shrink_to_hi(),
2315 }
2316 };
2317 Some(sugg)
2318 }
2319
2320 fn values_str(
2321 &self,
2322 values: ValuePairs<'tcx>,
2323 cause: &ObligationCause<'tcx>,
2324 long_ty_path: &mut Option<PathBuf>,
2325 ) -> Option<(DiagStyledString, DiagStyledString)> {
2326 match values {
2327 ValuePairs::Regions(exp_found) => self.expected_found_str(exp_found),
2328 ValuePairs::Terms(exp_found) => self.expected_found_str_term(exp_found, long_ty_path),
2329 ValuePairs::Aliases(exp_found) => self.expected_found_str(exp_found),
2330 ValuePairs::ExistentialTraitRef(exp_found) => self.expected_found_str(exp_found),
2331 ValuePairs::ExistentialProjection(exp_found) => self.expected_found_str(exp_found),
2332 ValuePairs::TraitRefs(exp_found) => {
2333 let pretty_exp_found = ty::error::ExpectedFound {
2334 expected: exp_found.expected.print_trait_sugared(),
2335 found: exp_found.found.print_trait_sugared(),
2336 };
2337 match self.expected_found_str(pretty_exp_found) {
2338 Some((expected, found)) if expected == found => {
2339 self.expected_found_str(exp_found)
2340 }
2341 ret => ret,
2342 }
2343 }
2344 ValuePairs::PolySigs(exp_found) => {
2345 let exp_found = self.resolve_vars_if_possible(exp_found);
2346 if exp_found.references_error() {
2347 return None;
2348 }
2349 let (fn_def1, fn_def2) = if let ObligationCauseCode::CompareImplItem {
2350 impl_item_def_id,
2351 trait_item_def_id,
2352 ..
2353 } = *cause.code()
2354 {
2355 (Some((trait_item_def_id, None)), Some((impl_item_def_id.to_def_id(), None)))
2356 } else {
2357 (None, None)
2358 };
2359
2360 Some(self.cmp_fn_sig(exp_found.expected, fn_def1, exp_found.found, fn_def2))
2361 }
2362 }
2363 }
2364
2365 fn expected_found_str_term(
2366 &self,
2367 exp_found: ty::error::ExpectedFound<ty::Term<'tcx>>,
2368 long_ty_path: &mut Option<PathBuf>,
2369 ) -> Option<(DiagStyledString, DiagStyledString)> {
2370 let exp_found = self.resolve_vars_if_possible(exp_found);
2371 if exp_found.references_error() {
2372 return None;
2373 }
2374
2375 Some(match (exp_found.expected.kind(), exp_found.found.kind()) {
2376 (ty::TermKind::Ty(expected), ty::TermKind::Ty(found)) => {
2377 let (mut exp, mut fnd) = self.cmp(expected, found);
2378 let len = self.tcx.sess.diagnostic_width();
2382 let exp_s = exp.content();
2383 let fnd_s = fnd.content();
2384 if !self.tcx.sess.opts.verbose
2385 && self.tcx.sess.opts.unstable_opts.write_long_types_to_disk
2386 {
2387 if exp_s.len() > len && fnd_s.len() > len {
2390 let exp_short = self.tcx.short_string(expected, long_ty_path);
2391 let fnd_short = self.tcx.short_string(found, long_ty_path);
2392 exp.shorten();
2396 fnd.shorten();
2397 if exp_short != fnd_short {
2398 if exp.0.len() <= 1 {
2401 exp = DiagStyledString::highlighted(exp_short);
2404 }
2405 if fnd.0.len() <= 1 {
2406 fnd = DiagStyledString::highlighted(fnd_short);
2409 }
2410 }
2411 } else {
2412 if exp_s.len() > len {
2413 exp.shorten();
2414 let exp_short = self.tcx.short_string(expected, long_ty_path);
2415 if exp.0.len() <= 1 {
2416 exp = DiagStyledString::highlighted(exp_short);
2417 }
2418 }
2419 if fnd_s.len() > len {
2420 fnd.shorten();
2421 let fnd_short = self.tcx.short_string(found, long_ty_path);
2422 if fnd.0.len() <= 1 {
2423 fnd = DiagStyledString::highlighted(fnd_short);
2424 }
2425 }
2426 }
2427 }
2428 (exp, fnd)
2429 }
2430 _ => (
2431 DiagStyledString::highlighted(exp_found.expected.to_string()),
2432 DiagStyledString::highlighted(exp_found.found.to_string()),
2433 ),
2434 })
2435 }
2436
2437 fn expected_found_str<T: fmt::Display + TypeFoldable<TyCtxt<'tcx>>>(
2439 &self,
2440 exp_found: ty::error::ExpectedFound<T>,
2441 ) -> Option<(DiagStyledString, DiagStyledString)> {
2442 let exp_found = self.resolve_vars_if_possible(exp_found);
2443 if exp_found.references_error() {
2444 return None;
2445 }
2446
2447 Some((
2448 DiagStyledString::highlighted(exp_found.expected.to_string()),
2449 DiagStyledString::highlighted(exp_found.found.to_string()),
2450 ))
2451 }
2452
2453 pub fn is_try_conversion(&self, span: Span, trait_def_id: DefId) -> bool {
2457 span.is_desugaring(DesugaringKind::QuestionMark)
2458 && self.tcx.is_diagnostic_item(sym::From, trait_def_id)
2459 }
2460
2461 pub fn same_type_modulo_infer<T: relate::Relate<TyCtxt<'tcx>>>(&self, a: T, b: T) -> bool {
2468 let (a, b) = self.resolve_vars_if_possible((a, b));
2469 SameTypeModuloInfer(self).relate(a, b).is_ok()
2470 }
2471}
2472
2473struct SameTypeModuloInfer<'a, 'tcx>(&'a InferCtxt<'tcx>);
2474
2475impl<'tcx> TypeRelation<TyCtxt<'tcx>> for SameTypeModuloInfer<'_, 'tcx> {
2476 fn cx(&self) -> TyCtxt<'tcx> {
2477 self.0.tcx
2478 }
2479
2480 fn relate_ty_args(
2481 &mut self,
2482 a_ty: Ty<'tcx>,
2483 _: Ty<'tcx>,
2484 _: DefId,
2485 a_args: ty::GenericArgsRef<'tcx>,
2486 b_args: ty::GenericArgsRef<'tcx>,
2487 _: impl FnOnce(ty::GenericArgsRef<'tcx>) -> Ty<'tcx>,
2488 ) -> RelateResult<'tcx, Ty<'tcx>> {
2489 relate::relate_args_invariantly(self, a_args, b_args)?;
2490 Ok(a_ty)
2491 }
2492
2493 fn relate_with_variance<T: relate::Relate<TyCtxt<'tcx>>>(
2494 &mut self,
2495 _variance: ty::Variance,
2496 _info: ty::VarianceDiagInfo<TyCtxt<'tcx>>,
2497 a: T,
2498 b: T,
2499 ) -> relate::RelateResult<'tcx, T> {
2500 self.relate(a, b)
2501 }
2502
2503 fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
2504 match (a.kind(), b.kind()) {
2505 (ty::Int(_) | ty::Uint(_), ty::Infer(ty::InferTy::IntVar(_)))
2506 | (
2507 ty::Infer(ty::InferTy::IntVar(_)),
2508 ty::Int(_) | ty::Uint(_) | ty::Infer(ty::InferTy::IntVar(_)),
2509 )
2510 | (ty::Float(_), ty::Infer(ty::InferTy::FloatVar(_)))
2511 | (
2512 ty::Infer(ty::InferTy::FloatVar(_)),
2513 ty::Float(_) | ty::Infer(ty::InferTy::FloatVar(_)),
2514 )
2515 | (ty::Infer(ty::InferTy::TyVar(_)), _)
2516 | (_, ty::Infer(ty::InferTy::TyVar(_))) => Ok(a),
2517 (ty::Infer(_), _) | (_, ty::Infer(_)) => Err(TypeError::Mismatch),
2518 _ => relate::structurally_relate_tys(self, a, b),
2519 }
2520 }
2521
2522 fn regions(
2523 &mut self,
2524 a: ty::Region<'tcx>,
2525 b: ty::Region<'tcx>,
2526 ) -> RelateResult<'tcx, ty::Region<'tcx>> {
2527 if (a.is_var() && b.is_free())
2528 || (b.is_var() && a.is_free())
2529 || (a.is_var() && b.is_var())
2530 || a == b
2531 {
2532 Ok(a)
2533 } else {
2534 Err(TypeError::Mismatch)
2535 }
2536 }
2537
2538 fn binders<T>(
2539 &mut self,
2540 a: ty::Binder<'tcx, T>,
2541 b: ty::Binder<'tcx, T>,
2542 ) -> relate::RelateResult<'tcx, ty::Binder<'tcx, T>>
2543 where
2544 T: relate::Relate<TyCtxt<'tcx>>,
2545 {
2546 Ok(a.rebind(self.relate(a.skip_binder(), b.skip_binder())?))
2547 }
2548
2549 fn consts(
2550 &mut self,
2551 a: ty::Const<'tcx>,
2552 _b: ty::Const<'tcx>,
2553 ) -> relate::RelateResult<'tcx, ty::Const<'tcx>> {
2554 Ok(a)
2557 }
2558}
2559
2560pub enum FailureCode {
2561 Error0317,
2562 Error0580,
2563 Error0308,
2564 Error0644,
2565}
2566
2567impl<'tcx> ObligationCauseExt<'tcx> for ObligationCause<'tcx> {
fn as_failure_code(&self, terr: TypeError<'tcx>) -> FailureCode {
match self.code() {
ObligationCauseCode::IfExpressionWithNoElse =>
FailureCode::Error0317,
ObligationCauseCode::MainFunctionType => FailureCode::Error0580,
ObligationCauseCode::CompareImplItem { .. } |
ObligationCauseCode::MatchExpressionArm(_) |
ObligationCauseCode::IfExpression { .. } |
ObligationCauseCode::LetElse |
ObligationCauseCode::LangFunctionType(_) |
ObligationCauseCode::IntrinsicType |
ObligationCauseCode::MethodReceiver => FailureCode::Error0308,
_ =>
match terr {
TypeError::CyclicTy(ty) if
ty.is_closure() || ty.is_coroutine() ||
ty.is_coroutine_closure() => {
FailureCode::Error0644
}
TypeError::IntrinsicCast | TypeError::ForceInlineCast =>
FailureCode::Error0308,
_ => FailureCode::Error0308,
},
}
}
fn as_failure_code_diag(&self, terr: TypeError<'tcx>, span: Span,
subdiags: Vec<TypeErrorAdditionalDiags>)
-> ObligationCauseFailureCode {
match self.code() {
ObligationCauseCode::CompareImplItem {
kind: ty::AssocKind::Fn { .. }, .. } => {
ObligationCauseFailureCode::MethodCompat { span, subdiags }
}
ObligationCauseCode::CompareImplItem {
kind: ty::AssocKind::Type { .. }, .. } => {
ObligationCauseFailureCode::TypeCompat { span, subdiags }
}
ObligationCauseCode::CompareImplItem {
kind: ty::AssocKind::Const { .. }, .. } => {
ObligationCauseFailureCode::ConstCompat { span, subdiags }
}
ObligationCauseCode::BlockTailExpression(..,
hir::MatchSource::TryDesugar(_)) => {
ObligationCauseFailureCode::TryCompat { span, subdiags }
}
ObligationCauseCode::MatchExpressionArm(MatchExpressionArmCause {
source, .. }) => {
match source {
hir::MatchSource::TryDesugar(_) => {
ObligationCauseFailureCode::TryCompat { span, subdiags }
}
_ =>
ObligationCauseFailureCode::MatchCompat { span, subdiags },
}
}
ObligationCauseCode::IfExpression { .. } => {
ObligationCauseFailureCode::IfElseDifferent { span, subdiags }
}
ObligationCauseCode::IfExpressionWithNoElse => {
ObligationCauseFailureCode::NoElse { span }
}
ObligationCauseCode::LetElse => {
ObligationCauseFailureCode::NoDiverge { span, subdiags }
}
ObligationCauseCode::MainFunctionType => {
ObligationCauseFailureCode::FnMainCorrectType { span }
}
&ObligationCauseCode::LangFunctionType(lang_item_name) => {
ObligationCauseFailureCode::FnLangCorrectType {
span,
subdiags,
lang_item_name,
}
}
ObligationCauseCode::IntrinsicType => {
ObligationCauseFailureCode::IntrinsicCorrectType {
span,
subdiags,
}
}
ObligationCauseCode::MethodReceiver => {
ObligationCauseFailureCode::MethodCorrectType {
span,
subdiags,
}
}
_ =>
match terr {
TypeError::CyclicTy(ty) if
ty.is_closure() || ty.is_coroutine() ||
ty.is_coroutine_closure() => {
ObligationCauseFailureCode::ClosureSelfref { span }
}
TypeError::ForceInlineCast => {
ObligationCauseFailureCode::CantCoerceForceInline {
span,
subdiags,
}
}
TypeError::IntrinsicCast => {
ObligationCauseFailureCode::CantCoerceIntrinsic {
span,
subdiags,
}
}
_ => ObligationCauseFailureCode::Generic { span, subdiags },
},
}
}
fn as_requirement_str(&self) -> &'static str {
match self.code() {
ObligationCauseCode::CompareImplItem {
kind: ty::AssocKind::Fn { .. }, .. } => {
"method type is compatible with trait"
}
ObligationCauseCode::CompareImplItem {
kind: ty::AssocKind::Type { .. }, .. } => {
"associated type is compatible with trait"
}
ObligationCauseCode::CompareImplItem {
kind: ty::AssocKind::Const { .. }, .. } => {
"const is compatible with trait"
}
ObligationCauseCode::MainFunctionType =>
"`main` function has the correct type",
ObligationCauseCode::LangFunctionType(_) =>
"lang item function has the correct type",
ObligationCauseCode::IntrinsicType =>
"intrinsic has the correct type",
ObligationCauseCode::MethodReceiver =>
"method receiver has the correct type",
_ => "types are compatible",
}
}
}#[extension(pub trait ObligationCauseExt<'tcx>)]
2568impl<'tcx> ObligationCause<'tcx> {
2569 fn as_failure_code(&self, terr: TypeError<'tcx>) -> FailureCode {
2570 match self.code() {
2571 ObligationCauseCode::IfExpressionWithNoElse => FailureCode::Error0317,
2572 ObligationCauseCode::MainFunctionType => FailureCode::Error0580,
2573 ObligationCauseCode::CompareImplItem { .. }
2574 | ObligationCauseCode::MatchExpressionArm(_)
2575 | ObligationCauseCode::IfExpression { .. }
2576 | ObligationCauseCode::LetElse
2577 | ObligationCauseCode::LangFunctionType(_)
2578 | ObligationCauseCode::IntrinsicType
2579 | ObligationCauseCode::MethodReceiver => FailureCode::Error0308,
2580
2581 _ => match terr {
2585 TypeError::CyclicTy(ty)
2586 if ty.is_closure() || ty.is_coroutine() || ty.is_coroutine_closure() =>
2587 {
2588 FailureCode::Error0644
2589 }
2590 TypeError::IntrinsicCast | TypeError::ForceInlineCast => FailureCode::Error0308,
2591 _ => FailureCode::Error0308,
2592 },
2593 }
2594 }
2595
2596 fn as_failure_code_diag(
2597 &self,
2598 terr: TypeError<'tcx>,
2599 span: Span,
2600 subdiags: Vec<TypeErrorAdditionalDiags>,
2601 ) -> ObligationCauseFailureCode {
2602 match self.code() {
2603 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Fn { .. }, .. } => {
2604 ObligationCauseFailureCode::MethodCompat { span, subdiags }
2605 }
2606 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Type { .. }, .. } => {
2607 ObligationCauseFailureCode::TypeCompat { span, subdiags }
2608 }
2609 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Const { .. }, .. } => {
2610 ObligationCauseFailureCode::ConstCompat { span, subdiags }
2611 }
2612 ObligationCauseCode::BlockTailExpression(.., hir::MatchSource::TryDesugar(_)) => {
2613 ObligationCauseFailureCode::TryCompat { span, subdiags }
2614 }
2615 ObligationCauseCode::MatchExpressionArm(MatchExpressionArmCause { source, .. }) => {
2616 match source {
2617 hir::MatchSource::TryDesugar(_) => {
2618 ObligationCauseFailureCode::TryCompat { span, subdiags }
2619 }
2620 _ => ObligationCauseFailureCode::MatchCompat { span, subdiags },
2621 }
2622 }
2623 ObligationCauseCode::IfExpression { .. } => {
2624 ObligationCauseFailureCode::IfElseDifferent { span, subdiags }
2625 }
2626 ObligationCauseCode::IfExpressionWithNoElse => {
2627 ObligationCauseFailureCode::NoElse { span }
2628 }
2629 ObligationCauseCode::LetElse => {
2630 ObligationCauseFailureCode::NoDiverge { span, subdiags }
2631 }
2632 ObligationCauseCode::MainFunctionType => {
2633 ObligationCauseFailureCode::FnMainCorrectType { span }
2634 }
2635 &ObligationCauseCode::LangFunctionType(lang_item_name) => {
2636 ObligationCauseFailureCode::FnLangCorrectType { span, subdiags, lang_item_name }
2637 }
2638 ObligationCauseCode::IntrinsicType => {
2639 ObligationCauseFailureCode::IntrinsicCorrectType { span, subdiags }
2640 }
2641 ObligationCauseCode::MethodReceiver => {
2642 ObligationCauseFailureCode::MethodCorrectType { span, subdiags }
2643 }
2644
2645 _ => match terr {
2649 TypeError::CyclicTy(ty)
2650 if ty.is_closure() || ty.is_coroutine() || ty.is_coroutine_closure() =>
2651 {
2652 ObligationCauseFailureCode::ClosureSelfref { span }
2653 }
2654 TypeError::ForceInlineCast => {
2655 ObligationCauseFailureCode::CantCoerceForceInline { span, subdiags }
2656 }
2657 TypeError::IntrinsicCast => {
2658 ObligationCauseFailureCode::CantCoerceIntrinsic { span, subdiags }
2659 }
2660 _ => ObligationCauseFailureCode::Generic { span, subdiags },
2661 },
2662 }
2663 }
2664
2665 fn as_requirement_str(&self) -> &'static str {
2666 match self.code() {
2667 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Fn { .. }, .. } => {
2668 "method type is compatible with trait"
2669 }
2670 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Type { .. }, .. } => {
2671 "associated type is compatible with trait"
2672 }
2673 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Const { .. }, .. } => {
2674 "const is compatible with trait"
2675 }
2676 ObligationCauseCode::MainFunctionType => "`main` function has the correct type",
2677 ObligationCauseCode::LangFunctionType(_) => "lang item function has the correct type",
2678 ObligationCauseCode::IntrinsicType => "intrinsic has the correct type",
2679 ObligationCauseCode::MethodReceiver => "method receiver has the correct type",
2680 _ => "types are compatible",
2681 }
2682 }
2683}
2684
2685pub struct ObligationCauseAsDiagArg<'tcx>(pub ObligationCause<'tcx>);
2687
2688impl IntoDiagArg for ObligationCauseAsDiagArg<'_> {
2689 fn into_diag_arg(self, _: &mut Option<std::path::PathBuf>) -> rustc_errors::DiagArgValue {
2690 let kind = match self.0.code() {
2691 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Fn { .. }, .. } => {
2692 "method_compat"
2693 }
2694 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Type { .. }, .. } => {
2695 "type_compat"
2696 }
2697 ObligationCauseCode::CompareImplItem { kind: ty::AssocKind::Const { .. }, .. } => {
2698 "const_compat"
2699 }
2700 ObligationCauseCode::MainFunctionType => "fn_main_correct_type",
2701 ObligationCauseCode::LangFunctionType(_) => "fn_lang_correct_type",
2702 ObligationCauseCode::IntrinsicType => "intrinsic_correct_type",
2703 ObligationCauseCode::MethodReceiver => "method_correct_type",
2704 _ => "other",
2705 }
2706 .into();
2707 rustc_errors::DiagArgValue::Str(kind)
2708 }
2709}
2710
2711#[derive(#[automatically_derived]
impl ::core::clone::Clone for TyCategory {
#[inline]
fn clone(&self) -> TyCategory {
let _: ::core::clone::AssertParamIsClone<hir::CoroutineKind>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for TyCategory { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for TyCategory {
#[inline]
fn eq(&self, other: &TyCategory) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(TyCategory::Coroutine(__self_0),
TyCategory::Coroutine(__arg1_0)) => __self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TyCategory {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<hir::CoroutineKind>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for TyCategory {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state);
match self {
TyCategory::Coroutine(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
_ => {}
}
}
}Hash)]
2714pub enum TyCategory {
2715 Closure,
2716 Opaque,
2717 OpaqueFuture,
2718 Coroutine(hir::CoroutineKind),
2719 Foreign,
2720}
2721
2722impl fmt::Display for TyCategory {
2723 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2724 match self {
2725 Self::Closure => "closure".fmt(f),
2726 Self::Opaque => "opaque type".fmt(f),
2727 Self::OpaqueFuture => "future".fmt(f),
2728 Self::Coroutine(gk) => gk.fmt(f),
2729 Self::Foreign => "foreign type".fmt(f),
2730 }
2731 }
2732}
2733
2734impl TyCategory {
2735 pub fn from_ty(tcx: TyCtxt<'_>, ty: Ty<'_>) -> Option<(Self, DefId)> {
2736 match *ty.kind() {
2737 ty::Closure(def_id, _) => Some((Self::Closure, def_id)),
2738 ty::Alias(_, ty::AliasTy { kind: ty::Opaque { def_id }, .. }) => {
2739 let kind =
2740 if tcx.ty_is_opaque_future(ty) { Self::OpaqueFuture } else { Self::Opaque };
2741 Some((kind, def_id))
2742 }
2743 ty::Coroutine(def_id, ..) => {
2744 Some((Self::Coroutine(tcx.coroutine_kind(def_id).unwrap()), def_id))
2745 }
2746 ty::Foreign(def_id) => Some((Self::Foreign, def_id)),
2747 _ => None,
2748 }
2749 }
2750}