]> git.lizzy.rs Git - rust.git/blob - src/librustc/traits/error_reporting.rs
Auto merge of #66255 - ehuss:update-cc, r=alexcrichton
[rust.git] / src / librustc / traits / error_reporting.rs
1 use super::{
2     ConstEvalFailure,
3     EvaluationResult,
4     FulfillmentError,
5     FulfillmentErrorCode,
6     MismatchedProjectionTypes,
7     ObjectSafetyViolation,
8     Obligation,
9     ObligationCause,
10     ObligationCauseCode,
11     OnUnimplementedDirective,
12     OnUnimplementedNote,
13     OutputTypeParameterMismatch,
14     Overflow,
15     PredicateObligation,
16     SelectionContext,
17     SelectionError,
18     TraitNotObjectSafe,
19 };
20
21 use crate::hir;
22 use crate::hir::Node;
23 use crate::hir::def_id::DefId;
24 use crate::infer::{self, InferCtxt};
25 use crate::infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
26 use crate::session::DiagnosticMessageId;
27 use crate::ty::{self, AdtKind, DefIdTree, ToPredicate, ToPolyTraitRef, Ty, TyCtxt, TypeFoldable};
28 use crate::ty::GenericParamDefKind;
29 use crate::ty::error::ExpectedFound;
30 use crate::ty::fast_reject;
31 use crate::ty::fold::TypeFolder;
32 use crate::ty::subst::Subst;
33 use crate::ty::SubtypePredicate;
34 use crate::util::nodemap::{FxHashMap, FxHashSet};
35
36 use errors::{Applicability, DiagnosticBuilder, pluralize};
37 use std::fmt;
38 use syntax::ast;
39 use syntax::symbol::{sym, kw};
40 use syntax_pos::{DUMMY_SP, Span, ExpnKind, MultiSpan};
41
42 use rustc_error_codes::*;
43
44 impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
45     pub fn report_fulfillment_errors(
46         &self,
47         errors: &[FulfillmentError<'tcx>],
48         body_id: Option<hir::BodyId>,
49         fallback_has_occurred: bool,
50     ) {
51         #[derive(Debug)]
52         struct ErrorDescriptor<'tcx> {
53             predicate: ty::Predicate<'tcx>,
54             index: Option<usize>, // None if this is an old error
55         }
56
57         let mut error_map: FxHashMap<_, Vec<_>> =
58             self.reported_trait_errors.borrow().iter().map(|(&span, predicates)| {
59                 (span, predicates.iter().map(|predicate| ErrorDescriptor {
60                     predicate: predicate.clone(),
61                     index: None
62                 }).collect())
63             }).collect();
64
65         for (index, error) in errors.iter().enumerate() {
66             // We want to ignore desugarings here: spans are equivalent even
67             // if one is the result of a desugaring and the other is not.
68             let mut span = error.obligation.cause.span;
69             let expn_data = span.ctxt().outer_expn_data();
70             if let ExpnKind::Desugaring(_) = expn_data.kind {
71                 span = expn_data.call_site;
72             }
73
74             error_map.entry(span).or_default().push(
75                 ErrorDescriptor {
76                     predicate: error.obligation.predicate.clone(),
77                     index: Some(index)
78                 }
79             );
80
81             self.reported_trait_errors.borrow_mut()
82                 .entry(span).or_default()
83                 .push(error.obligation.predicate.clone());
84         }
85
86         // We do this in 2 passes because we want to display errors in order, though
87         // maybe it *is* better to sort errors by span or something.
88         let mut is_suppressed = vec![false; errors.len()];
89         for (_, error_set) in error_map.iter() {
90             // We want to suppress "duplicate" errors with the same span.
91             for error in error_set {
92                 if let Some(index) = error.index {
93                     // Suppress errors that are either:
94                     // 1) strictly implied by another error.
95                     // 2) implied by an error with a smaller index.
96                     for error2 in error_set {
97                         if error2.index.map_or(false, |index2| is_suppressed[index2]) {
98                             // Avoid errors being suppressed by already-suppressed
99                             // errors, to prevent all errors from being suppressed
100                             // at once.
101                             continue
102                         }
103
104                         if self.error_implies(&error2.predicate, &error.predicate) &&
105                             !(error2.index >= error.index &&
106                               self.error_implies(&error.predicate, &error2.predicate))
107                         {
108                             info!("skipping {:?} (implied by {:?})", error, error2);
109                             is_suppressed[index] = true;
110                             break
111                         }
112                     }
113                 }
114             }
115         }
116
117         for (error, suppressed) in errors.iter().zip(is_suppressed) {
118             if !suppressed {
119                 self.report_fulfillment_error(error, body_id, fallback_has_occurred);
120             }
121         }
122     }
123
124     // returns if `cond` not occurring implies that `error` does not occur - i.e., that
125     // `error` occurring implies that `cond` occurs.
126     fn error_implies(
127         &self,
128         cond: &ty::Predicate<'tcx>,
129         error: &ty::Predicate<'tcx>,
130     ) -> bool {
131         if cond == error {
132             return true
133         }
134
135         let (cond, error) = match (cond, error) {
136             (&ty::Predicate::Trait(..), &ty::Predicate::Trait(ref error))
137                 => (cond, error),
138             _ => {
139                 // FIXME: make this work in other cases too.
140                 return false
141             }
142         };
143
144         for implication in super::elaborate_predicates(self.tcx, vec![cond.clone()]) {
145             if let ty::Predicate::Trait(implication) = implication {
146                 let error = error.to_poly_trait_ref();
147                 let implication = implication.to_poly_trait_ref();
148                 // FIXME: I'm just not taking associated types at all here.
149                 // Eventually I'll need to implement param-env-aware
150                 // `Γ₁ ⊦ φ₁ => Γ₂ ⊦ φ₂` logic.
151                 let param_env = ty::ParamEnv::empty();
152                 if self.can_sub(param_env, error, implication).is_ok() {
153                     debug!("error_implies: {:?} -> {:?} -> {:?}", cond, error, implication);
154                     return true
155                 }
156             }
157         }
158
159         false
160     }
161
162     fn report_fulfillment_error(
163         &self,
164         error: &FulfillmentError<'tcx>,
165         body_id: Option<hir::BodyId>,
166         fallback_has_occurred: bool,
167     ) {
168         debug!("report_fulfillment_errors({:?})", error);
169         match error.code {
170             FulfillmentErrorCode::CodeSelectionError(ref selection_error) => {
171                 self.report_selection_error(
172                     &error.obligation,
173                     selection_error,
174                     fallback_has_occurred,
175                     error.points_at_arg_span,
176                 );
177             }
178             FulfillmentErrorCode::CodeProjectionError(ref e) => {
179                 self.report_projection_error(&error.obligation, e);
180             }
181             FulfillmentErrorCode::CodeAmbiguity => {
182                 self.maybe_report_ambiguity(&error.obligation, body_id);
183             }
184             FulfillmentErrorCode::CodeSubtypeError(ref expected_found, ref err) => {
185                 self.report_mismatched_types(
186                     &error.obligation.cause,
187                     expected_found.expected,
188                     expected_found.found,
189                     err.clone(),
190                 ).emit();
191             }
192         }
193     }
194
195     fn report_projection_error(
196         &self,
197         obligation: &PredicateObligation<'tcx>,
198         error: &MismatchedProjectionTypes<'tcx>,
199     ) {
200         let predicate = self.resolve_vars_if_possible(&obligation.predicate);
201
202         if predicate.references_error() {
203             return
204         }
205
206         self.probe(|_| {
207             let err_buf;
208             let mut err = &error.err;
209             let mut values = None;
210
211             // try to find the mismatched types to report the error with.
212             //
213             // this can fail if the problem was higher-ranked, in which
214             // cause I have no idea for a good error message.
215             if let ty::Predicate::Projection(ref data) = predicate {
216                 let mut selcx = SelectionContext::new(self);
217                 let (data, _) = self.replace_bound_vars_with_fresh_vars(
218                     obligation.cause.span,
219                     infer::LateBoundRegionConversionTime::HigherRankedType,
220                     data
221                 );
222                 let mut obligations = vec![];
223                 let normalized_ty = super::normalize_projection_type(
224                     &mut selcx,
225                     obligation.param_env,
226                     data.projection_ty,
227                     obligation.cause.clone(),
228                     0,
229                     &mut obligations
230                 );
231
232                 debug!("report_projection_error obligation.cause={:?} obligation.param_env={:?}",
233                        obligation.cause, obligation.param_env);
234
235                 debug!("report_projection_error normalized_ty={:?} data.ty={:?}",
236                        normalized_ty, data.ty);
237
238                 let is_normalized_ty_expected = match &obligation.cause.code {
239                     ObligationCauseCode::ItemObligation(_) |
240                     ObligationCauseCode::BindingObligation(_, _) |
241                     ObligationCauseCode::ObjectCastObligation(_) => false,
242                     _ => true,
243                 };
244
245                 if let Err(error) = self.at(&obligation.cause, obligation.param_env)
246                     .eq_exp(is_normalized_ty_expected, normalized_ty, data.ty)
247                 {
248                     values = Some(infer::ValuePairs::Types(
249                         ExpectedFound::new(is_normalized_ty_expected, normalized_ty, data.ty)));
250
251                     err_buf = error;
252                     err = &err_buf;
253                 }
254             }
255
256             let msg = format!("type mismatch resolving `{}`", predicate);
257             let error_id = (
258                 DiagnosticMessageId::ErrorId(271),
259                 Some(obligation.cause.span),
260                 msg,
261             );
262             let fresh = self.tcx.sess.one_time_diagnostics.borrow_mut().insert(error_id);
263             if fresh {
264                 let mut diag = struct_span_err!(
265                     self.tcx.sess,
266                     obligation.cause.span,
267                     E0271,
268                     "type mismatch resolving `{}`",
269                     predicate
270                 );
271                 self.note_type_err(&mut diag, &obligation.cause, None, values, err);
272                 self.note_obligation_cause(&mut diag, obligation);
273                 diag.emit();
274             }
275         });
276     }
277
278     fn fuzzy_match_tys(&self, a: Ty<'tcx>, b: Ty<'tcx>) -> bool {
279         /// returns the fuzzy category of a given type, or None
280         /// if the type can be equated to any type.
281         fn type_category(t: Ty<'_>) -> Option<u32> {
282             match t.kind {
283                 ty::Bool => Some(0),
284                 ty::Char => Some(1),
285                 ty::Str => Some(2),
286                 ty::Int(..) | ty::Uint(..) | ty::Infer(ty::IntVar(..)) => Some(3),
287                 ty::Float(..) | ty::Infer(ty::FloatVar(..)) => Some(4),
288                 ty::Ref(..) | ty::RawPtr(..) => Some(5),
289                 ty::Array(..) | ty::Slice(..) => Some(6),
290                 ty::FnDef(..) | ty::FnPtr(..) => Some(7),
291                 ty::Dynamic(..) => Some(8),
292                 ty::Closure(..) => Some(9),
293                 ty::Tuple(..) => Some(10),
294                 ty::Projection(..) => Some(11),
295                 ty::Param(..) => Some(12),
296                 ty::Opaque(..) => Some(13),
297                 ty::Never => Some(14),
298                 ty::Adt(adt, ..) => match adt.adt_kind() {
299                     AdtKind::Struct => Some(15),
300                     AdtKind::Union => Some(16),
301                     AdtKind::Enum => Some(17),
302                 },
303                 ty::Generator(..) => Some(18),
304                 ty::Foreign(..) => Some(19),
305                 ty::GeneratorWitness(..) => Some(20),
306                 ty::Placeholder(..) | ty::Bound(..) | ty::Infer(..) | ty::Error => None,
307                 ty::UnnormalizedProjection(..) => bug!("only used with chalk-engine"),
308             }
309         }
310
311         match (type_category(a), type_category(b)) {
312             (Some(cat_a), Some(cat_b)) => match (&a.kind, &b.kind) {
313                 (&ty::Adt(def_a, _), &ty::Adt(def_b, _)) => def_a == def_b,
314                 _ => cat_a == cat_b
315             },
316             // infer and error can be equated to all types
317             _ => true
318         }
319     }
320
321     fn impl_similar_to(&self,
322                        trait_ref: ty::PolyTraitRef<'tcx>,
323                        obligation: &PredicateObligation<'tcx>)
324                        -> Option<DefId>
325     {
326         let tcx = self.tcx;
327         let param_env = obligation.param_env;
328         let trait_ref = tcx.erase_late_bound_regions(&trait_ref);
329         let trait_self_ty = trait_ref.self_ty();
330
331         let mut self_match_impls = vec![];
332         let mut fuzzy_match_impls = vec![];
333
334         self.tcx.for_each_relevant_impl(
335             trait_ref.def_id, trait_self_ty, |def_id| {
336                 let impl_substs = self.fresh_substs_for_item(obligation.cause.span, def_id);
337                 let impl_trait_ref = tcx
338                     .impl_trait_ref(def_id)
339                     .unwrap()
340                     .subst(tcx, impl_substs);
341
342                 let impl_self_ty = impl_trait_ref.self_ty();
343
344                 if let Ok(..) = self.can_eq(param_env, trait_self_ty, impl_self_ty) {
345                     self_match_impls.push(def_id);
346
347                     if trait_ref.substs.types().skip(1)
348                         .zip(impl_trait_ref.substs.types().skip(1))
349                         .all(|(u,v)| self.fuzzy_match_tys(u, v))
350                     {
351                         fuzzy_match_impls.push(def_id);
352                     }
353                 }
354             });
355
356         let impl_def_id = if self_match_impls.len() == 1 {
357             self_match_impls[0]
358         } else if fuzzy_match_impls.len() == 1 {
359             fuzzy_match_impls[0]
360         } else {
361             return None
362         };
363
364         if tcx.has_attr(impl_def_id, sym::rustc_on_unimplemented) {
365             Some(impl_def_id)
366         } else {
367             None
368         }
369     }
370
371     fn describe_generator(&self, body_id: hir::BodyId) -> Option<&'static str> {
372         self.tcx.hir().body(body_id).generator_kind.map(|gen_kind| {
373             match gen_kind {
374                 hir::GeneratorKind::Gen => "a generator",
375                 hir::GeneratorKind::Async(hir::AsyncGeneratorKind::Block) => "an async block",
376                 hir::GeneratorKind::Async(hir::AsyncGeneratorKind::Fn) => "an async function",
377                 hir::GeneratorKind::Async(hir::AsyncGeneratorKind::Closure) => "an async closure",
378             }
379         })
380     }
381
382     /// Used to set on_unimplemented's `ItemContext`
383     /// to be the enclosing (async) block/function/closure
384     fn describe_enclosure(&self, hir_id: hir::HirId) -> Option<&'static str> {
385         let hir = &self.tcx.hir();
386         let node = hir.find(hir_id)?;
387         if let hir::Node::Item(
388             hir::Item{kind: hir::ItemKind::Fn(sig, _, body_id), .. }) = &node {
389             self.describe_generator(*body_id).or_else(||
390                 Some(if let hir::FnHeader{ asyncness: hir::IsAsync::Async, .. } = sig.header {
391                     "an async function"
392                 } else {
393                     "a function"
394                 })
395             )
396         } else if let hir::Node::Expr(hir::Expr {
397             kind: hir::ExprKind::Closure(_is_move, _, body_id, _, gen_movability), .. }) = &node {
398             self.describe_generator(*body_id).or_else(||
399                 Some(if gen_movability.is_some() {
400                     "an async closure"
401                 } else {
402                     "a closure"
403                 })
404             )
405         } else if let hir::Node::Expr(hir::Expr { .. }) = &node {
406             let parent_hid = hir.get_parent_node(hir_id);
407             if parent_hid != hir_id {
408                 return self.describe_enclosure(parent_hid);
409             } else {
410                 None
411             }
412         } else {
413             None
414         }
415     }
416
417     fn on_unimplemented_note(
418         &self,
419         trait_ref: ty::PolyTraitRef<'tcx>,
420         obligation: &PredicateObligation<'tcx>,
421     ) -> OnUnimplementedNote {
422         let def_id = self.impl_similar_to(trait_ref, obligation)
423             .unwrap_or_else(|| trait_ref.def_id());
424         let trait_ref = *trait_ref.skip_binder();
425
426         let mut flags = vec![];
427         flags.push((sym::item_context,
428             self.describe_enclosure(obligation.cause.body_id).map(|s|s.to_owned())));
429
430         match obligation.cause.code {
431             ObligationCauseCode::BuiltinDerivedObligation(..) |
432             ObligationCauseCode::ImplDerivedObligation(..) => {}
433             _ => {
434                 // this is a "direct", user-specified, rather than derived,
435                 // obligation.
436                 flags.push((sym::direct, None));
437             }
438         }
439
440         if let ObligationCauseCode::ItemObligation(item) = obligation.cause.code {
441             // FIXME: maybe also have some way of handling methods
442             // from other traits? That would require name resolution,
443             // which we might want to be some sort of hygienic.
444             //
445             // Currently I'm leaving it for what I need for `try`.
446             if self.tcx.trait_of_item(item) == Some(trait_ref.def_id) {
447                 let method = self.tcx.item_name(item);
448                 flags.push((sym::from_method, None));
449                 flags.push((sym::from_method, Some(method.to_string())));
450             }
451         }
452         if let Some(t) = self.get_parent_trait_ref(&obligation.cause.code) {
453             flags.push((sym::parent_trait, Some(t)));
454         }
455
456         if let Some(k) = obligation.cause.span.desugaring_kind() {
457             flags.push((sym::from_desugaring, None));
458             flags.push((sym::from_desugaring, Some(format!("{:?}", k))));
459         }
460         let generics = self.tcx.generics_of(def_id);
461         let self_ty = trait_ref.self_ty();
462         // This is also included through the generics list as `Self`,
463         // but the parser won't allow you to use it
464         flags.push((sym::_Self, Some(self_ty.to_string())));
465         if let Some(def) = self_ty.ty_adt_def() {
466             // We also want to be able to select self's original
467             // signature with no type arguments resolved
468             flags.push((sym::_Self, Some(self.tcx.type_of(def.did).to_string())));
469         }
470
471         for param in generics.params.iter() {
472             let value = match param.kind {
473                 GenericParamDefKind::Type { .. } |
474                 GenericParamDefKind::Const => {
475                     trait_ref.substs[param.index as usize].to_string()
476                 },
477                 GenericParamDefKind::Lifetime => continue,
478             };
479             let name = param.name;
480             flags.push((name, Some(value)));
481         }
482
483         if let Some(true) = self_ty.ty_adt_def().map(|def| def.did.is_local()) {
484             flags.push((sym::crate_local, None));
485         }
486
487         // Allow targeting all integers using `{integral}`, even if the exact type was resolved
488         if self_ty.is_integral() {
489             flags.push((sym::_Self, Some("{integral}".to_owned())));
490         }
491
492         if let ty::Array(aty, len) = self_ty.kind {
493             flags.push((sym::_Self, Some("[]".to_owned())));
494             flags.push((sym::_Self, Some(format!("[{}]", aty))));
495             if let Some(def) = aty.ty_adt_def() {
496                 // We also want to be able to select the array's type's original
497                 // signature with no type arguments resolved
498                 flags.push((
499                     sym::_Self,
500                     Some(format!("[{}]", self.tcx.type_of(def.did).to_string())),
501                 ));
502                 let tcx = self.tcx;
503                 if let Some(len) = len.try_eval_usize(tcx, ty::ParamEnv::empty()) {
504                     flags.push((
505                         sym::_Self,
506                         Some(format!("[{}; {}]", self.tcx.type_of(def.did).to_string(), len)),
507                     ));
508                 } else {
509                     flags.push((
510                         sym::_Self,
511                         Some(format!("[{}; _]", self.tcx.type_of(def.did).to_string())),
512                     ));
513                 }
514             }
515         }
516
517         if let Ok(Some(command)) = OnUnimplementedDirective::of_item(
518             self.tcx, trait_ref.def_id, def_id
519         ) {
520             command.evaluate(self.tcx, trait_ref, &flags[..])
521         } else {
522             OnUnimplementedNote::empty()
523         }
524     }
525
526     fn find_similar_impl_candidates(
527         &self,
528         trait_ref: ty::PolyTraitRef<'tcx>,
529     ) -> Vec<ty::TraitRef<'tcx>> {
530         let simp = fast_reject::simplify_type(self.tcx, trait_ref.skip_binder().self_ty(), true);
531         let all_impls = self.tcx.all_impls(trait_ref.def_id());
532
533         match simp {
534             Some(simp) => all_impls.iter().filter_map(|&def_id| {
535                 let imp = self.tcx.impl_trait_ref(def_id).unwrap();
536                 let imp_simp = fast_reject::simplify_type(self.tcx, imp.self_ty(), true);
537                 if let Some(imp_simp) = imp_simp {
538                     if simp != imp_simp {
539                         return None
540                     }
541                 }
542
543                 Some(imp)
544             }).collect(),
545             None => all_impls.iter().map(|&def_id|
546                 self.tcx.impl_trait_ref(def_id).unwrap()
547             ).collect()
548         }
549     }
550
551     fn report_similar_impl_candidates(
552         &self,
553         impl_candidates: Vec<ty::TraitRef<'tcx>>,
554         err: &mut DiagnosticBuilder<'_>,
555     ) {
556         if impl_candidates.is_empty() {
557             return;
558         }
559
560         let len = impl_candidates.len();
561         let end = if impl_candidates.len() <= 5 {
562             impl_candidates.len()
563         } else {
564             4
565         };
566
567         let normalize = |candidate| self.tcx.infer_ctxt().enter(|ref infcx| {
568             let normalized = infcx
569                 .at(&ObligationCause::dummy(), ty::ParamEnv::empty())
570                 .normalize(candidate)
571                 .ok();
572             match normalized {
573                 Some(normalized) => format!("\n  {:?}", normalized.value),
574                 None => format!("\n  {:?}", candidate),
575             }
576         });
577
578         // Sort impl candidates so that ordering is consistent for UI tests.
579         let mut normalized_impl_candidates = impl_candidates
580             .iter()
581             .map(normalize)
582             .collect::<Vec<String>>();
583
584         // Sort before taking the `..end` range,
585         // because the ordering of `impl_candidates` may not be deterministic:
586         // https://github.com/rust-lang/rust/pull/57475#issuecomment-455519507
587         normalized_impl_candidates.sort();
588
589         err.help(&format!("the following implementations were found:{}{}",
590                           normalized_impl_candidates[..end].join(""),
591                           if len > 5 {
592                               format!("\nand {} others", len - 4)
593                           } else {
594                               String::new()
595                           }
596                           ));
597     }
598
599     /// Reports that an overflow has occurred and halts compilation. We
600     /// halt compilation unconditionally because it is important that
601     /// overflows never be masked -- they basically represent computations
602     /// whose result could not be truly determined and thus we can't say
603     /// if the program type checks or not -- and they are unusual
604     /// occurrences in any case.
605     pub fn report_overflow_error<T>(
606         &self,
607         obligation: &Obligation<'tcx, T>,
608         suggest_increasing_limit: bool,
609     ) -> !
610         where T: fmt::Display + TypeFoldable<'tcx>
611     {
612         let predicate =
613             self.resolve_vars_if_possible(&obligation.predicate);
614         let mut err = struct_span_err!(
615             self.tcx.sess,
616             obligation.cause.span,
617             E0275,
618             "overflow evaluating the requirement `{}`",
619             predicate
620         );
621
622         if suggest_increasing_limit {
623             self.suggest_new_overflow_limit(&mut err);
624         }
625
626         self.note_obligation_cause_code(
627             &mut err,
628             &obligation.predicate,
629             &obligation.cause.code,
630             &mut vec![],
631         );
632
633         err.emit();
634         self.tcx.sess.abort_if_errors();
635         bug!();
636     }
637
638     /// Reports that a cycle was detected which led to overflow and halts
639     /// compilation. This is equivalent to `report_overflow_error` except
640     /// that we can give a more helpful error message (and, in particular,
641     /// we do not suggest increasing the overflow limit, which is not
642     /// going to help).
643     pub fn report_overflow_error_cycle(&self, cycle: &[PredicateObligation<'tcx>]) -> ! {
644         let cycle = self.resolve_vars_if_possible(&cycle.to_owned());
645         assert!(cycle.len() > 0);
646
647         debug!("report_overflow_error_cycle: cycle={:?}", cycle);
648
649         self.report_overflow_error(&cycle[0], false);
650     }
651
652     pub fn report_extra_impl_obligation(&self,
653                                         error_span: Span,
654                                         item_name: ast::Name,
655                                         _impl_item_def_id: DefId,
656                                         trait_item_def_id: DefId,
657                                         requirement: &dyn fmt::Display)
658                                         -> DiagnosticBuilder<'tcx>
659     {
660         let msg = "impl has stricter requirements than trait";
661         let sp = self.tcx.sess.source_map().def_span(error_span);
662
663         let mut err = struct_span_err!(self.tcx.sess, sp, E0276, "{}", msg);
664
665         if let Some(trait_item_span) = self.tcx.hir().span_if_local(trait_item_def_id) {
666             let span = self.tcx.sess.source_map().def_span(trait_item_span);
667             err.span_label(span, format!("definition of `{}` from trait", item_name));
668         }
669
670         err.span_label(sp, format!("impl has extra requirement {}", requirement));
671
672         err
673     }
674
675
676     /// Gets the parent trait chain start
677     fn get_parent_trait_ref(&self, code: &ObligationCauseCode<'tcx>) -> Option<String> {
678         match code {
679             &ObligationCauseCode::BuiltinDerivedObligation(ref data) => {
680                 let parent_trait_ref = self.resolve_vars_if_possible(
681                     &data.parent_trait_ref);
682                 match self.get_parent_trait_ref(&data.parent_code) {
683                     Some(t) => Some(t),
684                     None => Some(parent_trait_ref.skip_binder().self_ty().to_string()),
685                 }
686             }
687             _ => None,
688         }
689     }
690
691     pub fn report_selection_error(
692         &self,
693         obligation: &PredicateObligation<'tcx>,
694         error: &SelectionError<'tcx>,
695         fallback_has_occurred: bool,
696         points_at_arg: bool,
697     ) {
698         let span = obligation.cause.span;
699
700         let mut err = match *error {
701             SelectionError::Unimplemented => {
702                 if let ObligationCauseCode::CompareImplMethodObligation {
703                     item_name, impl_item_def_id, trait_item_def_id,
704                 } = obligation.cause.code {
705                     self.report_extra_impl_obligation(
706                         span,
707                         item_name,
708                         impl_item_def_id,
709                         trait_item_def_id,
710                         &format!("`{}`", obligation.predicate))
711                         .emit();
712                     return;
713                 }
714                 match obligation.predicate {
715                     ty::Predicate::Trait(ref trait_predicate) => {
716                         let trait_predicate =
717                             self.resolve_vars_if_possible(trait_predicate);
718
719                         if self.tcx.sess.has_errors() && trait_predicate.references_error() {
720                             return;
721                         }
722                         let trait_ref = trait_predicate.to_poly_trait_ref();
723                         let (post_message, pre_message) =
724                             self.get_parent_trait_ref(&obligation.cause.code)
725                                 .map(|t| (format!(" in `{}`", t), format!("within `{}`, ", t)))
726                             .unwrap_or_default();
727
728                         let OnUnimplementedNote { message, label, note }
729                             = self.on_unimplemented_note(trait_ref, obligation);
730                         let have_alt_message = message.is_some() || label.is_some();
731                         let is_try = self.tcx.sess.source_map().span_to_snippet(span)
732                             .map(|s| &s == "?")
733                             .unwrap_or(false);
734                         let is_from = format!("{}", trait_ref).starts_with("std::convert::From<");
735                         let (message, note) = if is_try && is_from {
736                             (Some(format!(
737                                 "`?` couldn't convert the error to `{}`",
738                                 trait_ref.self_ty(),
739                             )), Some(
740                                 "the question mark operation (`?`) implicitly performs a \
741                                  conversion on the error value using the `From` trait".to_owned()
742                             ))
743                         } else {
744                             (message, note)
745                         };
746
747                         let mut err = struct_span_err!(
748                             self.tcx.sess,
749                             span,
750                             E0277,
751                             "{}",
752                             message.unwrap_or_else(|| format!(
753                                 "the trait bound `{}` is not satisfied{}",
754                                 trait_ref.to_predicate(),
755                                 post_message,
756                             )));
757
758                         let explanation =
759                             if obligation.cause.code == ObligationCauseCode::MainFunctionType {
760                                 "consider using `()`, or a `Result`".to_owned()
761                             } else {
762                                 format!(
763                                     "{}the trait `{}` is not implemented for `{}`",
764                                     pre_message,
765                                     trait_ref,
766                                     trait_ref.self_ty(),
767                                 )
768                             };
769
770                         if let Some(ref s) = label {
771                             // If it has a custom `#[rustc_on_unimplemented]`
772                             // error message, let's display it as the label!
773                             err.span_label(span, s.as_str());
774                             err.help(&explanation);
775                         } else {
776                             err.span_label(span, explanation);
777                         }
778                         if let Some(ref s) = note {
779                             // If it has a custom `#[rustc_on_unimplemented]` note, let's display it
780                             err.note(s.as_str());
781                         }
782
783                         self.suggest_borrow_on_unsized_slice(&obligation.cause.code, &mut err);
784                         self.suggest_fn_call(&obligation, &mut err, &trait_ref, points_at_arg);
785                         self.suggest_remove_reference(&obligation, &mut err, &trait_ref);
786                         self.suggest_semicolon_removal(&obligation, &mut err, span, &trait_ref);
787
788                         // Try to report a help message
789                         if !trait_ref.has_infer_types() &&
790                             self.predicate_can_apply(obligation.param_env, trait_ref) {
791                             // If a where-clause may be useful, remind the
792                             // user that they can add it.
793                             //
794                             // don't display an on-unimplemented note, as
795                             // these notes will often be of the form
796                             //     "the type `T` can't be frobnicated"
797                             // which is somewhat confusing.
798                             self.suggest_restricting_param_bound(
799                                 &mut err,
800                                 &trait_ref,
801                                 obligation.cause.body_id,
802                             );
803                         } else {
804                             if !have_alt_message {
805                                 // Can't show anything else useful, try to find similar impls.
806                                 let impl_candidates = self.find_similar_impl_candidates(trait_ref);
807                                 self.report_similar_impl_candidates(impl_candidates, &mut err);
808                             }
809                             self.suggest_change_mut(
810                                 &obligation,
811                                 &mut err,
812                                 &trait_ref,
813                                 points_at_arg,
814                             );
815                         }
816
817                         // If this error is due to `!: Trait` not implemented but `(): Trait` is
818                         // implemented, and fallback has occurred, then it could be due to a
819                         // variable that used to fallback to `()` now falling back to `!`. Issue a
820                         // note informing about the change in behaviour.
821                         if trait_predicate.skip_binder().self_ty().is_never()
822                             && fallback_has_occurred
823                         {
824                             let predicate = trait_predicate.map_bound(|mut trait_pred| {
825                                 trait_pred.trait_ref.substs = self.tcx.mk_substs_trait(
826                                     self.tcx.mk_unit(),
827                                     &trait_pred.trait_ref.substs[1..],
828                                 );
829                                 trait_pred
830                             });
831                             let unit_obligation = Obligation {
832                                 predicate: ty::Predicate::Trait(predicate),
833                                 .. obligation.clone()
834                             };
835                             if self.predicate_may_hold(&unit_obligation) {
836                                 err.note("the trait is implemented for `()`. \
837                                          Possibly this error has been caused by changes to \
838                                          Rust's type-inference algorithm \
839                                          (see: https://github.com/rust-lang/rust/issues/48950 \
840                                          for more info). Consider whether you meant to use the \
841                                          type `()` here instead.");
842                             }
843                         }
844
845                         err
846                     }
847
848                     ty::Predicate::Subtype(ref predicate) => {
849                         // Errors for Subtype predicates show up as
850                         // `FulfillmentErrorCode::CodeSubtypeError`,
851                         // not selection error.
852                         span_bug!(span, "subtype requirement gave wrong error: `{:?}`", predicate)
853                     }
854
855                     ty::Predicate::RegionOutlives(ref predicate) => {
856                         let predicate = self.resolve_vars_if_possible(predicate);
857                         let err = self.region_outlives_predicate(&obligation.cause,
858                                                                  &predicate).err().unwrap();
859                         struct_span_err!(
860                             self.tcx.sess, span, E0279,
861                             "the requirement `{}` is not satisfied (`{}`)",
862                             predicate, err,
863                         )
864                     }
865
866                     ty::Predicate::Projection(..) | ty::Predicate::TypeOutlives(..) => {
867                         let predicate =
868                             self.resolve_vars_if_possible(&obligation.predicate);
869                         struct_span_err!(self.tcx.sess, span, E0280,
870                             "the requirement `{}` is not satisfied",
871                             predicate)
872                     }
873
874                     ty::Predicate::ObjectSafe(trait_def_id) => {
875                         let violations = self.tcx.object_safety_violations(trait_def_id);
876                         self.tcx.report_object_safety_error(
877                             span,
878                             trait_def_id,
879                             violations,
880                         )
881                     }
882
883                     ty::Predicate::ClosureKind(closure_def_id, closure_substs, kind) => {
884                         let found_kind = self.closure_kind(closure_def_id, closure_substs).unwrap();
885                         let closure_span = self.tcx.sess.source_map()
886                             .def_span(self.tcx.hir().span_if_local(closure_def_id).unwrap());
887                         let hir_id = self.tcx.hir().as_local_hir_id(closure_def_id).unwrap();
888                         let mut err = struct_span_err!(
889                             self.tcx.sess, closure_span, E0525,
890                             "expected a closure that implements the `{}` trait, \
891                              but this closure only implements `{}`",
892                             kind,
893                             found_kind);
894
895                         err.span_label(
896                             closure_span,
897                             format!("this closure implements `{}`, not `{}`", found_kind, kind));
898                         err.span_label(
899                             obligation.cause.span,
900                             format!("the requirement to implement `{}` derives from here", kind));
901
902                         // Additional context information explaining why the closure only implements
903                         // a particular trait.
904                         if let Some(tables) = self.in_progress_tables {
905                             let tables = tables.borrow();
906                             match (found_kind, tables.closure_kind_origins().get(hir_id)) {
907                                 (ty::ClosureKind::FnOnce, Some((span, name))) => {
908                                     err.span_label(*span, format!(
909                                         "closure is `FnOnce` because it moves the \
910                                          variable `{}` out of its environment", name));
911                                 },
912                                 (ty::ClosureKind::FnMut, Some((span, name))) => {
913                                     err.span_label(*span, format!(
914                                         "closure is `FnMut` because it mutates the \
915                                          variable `{}` here", name));
916                                 },
917                                 _ => {}
918                             }
919                         }
920
921                         err.emit();
922                         return;
923                     }
924
925                     ty::Predicate::WellFormed(ty) => {
926                         if !self.tcx.sess.opts.debugging_opts.chalk {
927                             // WF predicates cannot themselves make
928                             // errors. They can only block due to
929                             // ambiguity; otherwise, they always
930                             // degenerate into other obligations
931                             // (which may fail).
932                             span_bug!(span, "WF predicate not satisfied for {:?}", ty);
933                         } else {
934                             // FIXME: we'll need a better message which takes into account
935                             // which bounds actually failed to hold.
936                             self.tcx.sess.struct_span_err(
937                                 span,
938                                 &format!("the type `{}` is not well-formed (chalk)", ty)
939                             )
940                         }
941                     }
942
943                     ty::Predicate::ConstEvaluatable(..) => {
944                         // Errors for `ConstEvaluatable` predicates show up as
945                         // `SelectionError::ConstEvalFailure`,
946                         // not `Unimplemented`.
947                         span_bug!(span,
948                             "const-evaluatable requirement gave wrong error: `{:?}`", obligation)
949                     }
950                 }
951             }
952
953             OutputTypeParameterMismatch(ref found_trait_ref, ref expected_trait_ref, _) => {
954                 let found_trait_ref = self.resolve_vars_if_possible(&*found_trait_ref);
955                 let expected_trait_ref = self.resolve_vars_if_possible(&*expected_trait_ref);
956
957                 if expected_trait_ref.self_ty().references_error() {
958                     return;
959                 }
960
961                 let found_trait_ty = found_trait_ref.self_ty();
962
963                 let found_did = match found_trait_ty.kind {
964                     ty::Closure(did, _) | ty::Foreign(did) | ty::FnDef(did, _) => Some(did),
965                     ty::Adt(def, _) => Some(def.did),
966                     _ => None,
967                 };
968
969                 let found_span = found_did.and_then(|did|
970                     self.tcx.hir().span_if_local(did)
971                 ).map(|sp| self.tcx.sess.source_map().def_span(sp)); // the sp could be an fn def
972
973                 if self.reported_closure_mismatch.borrow().contains(&(span, found_span)) {
974                     // We check closures twice, with obligations flowing in different directions,
975                     // but we want to complain about them only once.
976                     return;
977                 }
978
979                 self.reported_closure_mismatch.borrow_mut().insert((span, found_span));
980
981                 let found = match found_trait_ref.skip_binder().substs.type_at(1).kind {
982                     ty::Tuple(ref tys) => vec![ArgKind::empty(); tys.len()],
983                     _ => vec![ArgKind::empty()],
984                 };
985
986                 let expected_ty = expected_trait_ref.skip_binder().substs.type_at(1);
987                 let expected = match expected_ty.kind {
988                     ty::Tuple(ref tys) => tys.iter()
989                         .map(|t| ArgKind::from_expected_ty(t.expect_ty(), Some(span))).collect(),
990                     _ => vec![ArgKind::Arg("_".to_owned(), expected_ty.to_string())],
991                 };
992
993                 if found.len() == expected.len() {
994                     self.report_closure_arg_mismatch(span,
995                                                      found_span,
996                                                      found_trait_ref,
997                                                      expected_trait_ref)
998                 } else {
999                     let (closure_span, found) = found_did
1000                         .and_then(|did| self.tcx.hir().get_if_local(did))
1001                         .map(|node| {
1002                             let (found_span, found) = self.get_fn_like_arguments(node);
1003                             (Some(found_span), found)
1004                         }).unwrap_or((found_span, found));
1005
1006                     self.report_arg_count_mismatch(span,
1007                                                    closure_span,
1008                                                    expected,
1009                                                    found,
1010                                                    found_trait_ty.is_closure())
1011                 }
1012             }
1013
1014             TraitNotObjectSafe(did) => {
1015                 let violations = self.tcx.object_safety_violations(did);
1016                 self.tcx.report_object_safety_error(span, did, violations)
1017             }
1018
1019             // already reported in the query
1020             ConstEvalFailure(err) => {
1021                 self.tcx.sess.delay_span_bug(
1022                     span,
1023                     &format!("constant in type had an ignored error: {:?}", err),
1024                 );
1025                 return;
1026             }
1027
1028             Overflow => {
1029                 bug!("overflow should be handled before the `report_selection_error` path");
1030             }
1031         };
1032
1033         self.note_obligation_cause(&mut err, obligation);
1034
1035         err.emit();
1036     }
1037
1038     fn suggest_restricting_param_bound(
1039         &self,
1040         err: &mut DiagnosticBuilder<'_>,
1041         trait_ref: &ty::PolyTraitRef<'_>,
1042         body_id: hir::HirId,
1043     ) {
1044         let self_ty = trait_ref.self_ty();
1045         let (param_ty, projection) = match &self_ty.kind {
1046             ty::Param(_) => (true, None),
1047             ty::Projection(projection) => (false, Some(projection)),
1048             _ => return,
1049         };
1050
1051         let mut suggest_restriction = |generics: &hir::Generics, msg| {
1052             let span = generics.where_clause.span_for_predicates_or_empty_place();
1053             if !span.from_expansion() && span.desugaring_kind().is_none() {
1054                 err.span_suggestion(
1055                     generics.where_clause.span_for_predicates_or_empty_place().shrink_to_hi(),
1056                     &format!("consider further restricting {}", msg),
1057                     format!(
1058                         "{} {} ",
1059                         if !generics.where_clause.predicates.is_empty() {
1060                             ","
1061                         } else {
1062                             " where"
1063                         },
1064                         trait_ref.to_predicate(),
1065                     ),
1066                     Applicability::MachineApplicable,
1067                 );
1068             }
1069         };
1070
1071         // FIXME: Add check for trait bound that is already present, particularly `?Sized` so we
1072         //        don't suggest `T: Sized + ?Sized`.
1073         let mut hir_id = body_id;
1074         while let Some(node) = self.tcx.hir().find(hir_id) {
1075             match node {
1076                 hir::Node::TraitItem(hir::TraitItem {
1077                     generics,
1078                     kind: hir::TraitItemKind::Method(..), ..
1079                 }) if param_ty && self_ty == self.tcx.types.self_param => {
1080                     // Restricting `Self` for a single method.
1081                     suggest_restriction(&generics, "`Self`");
1082                     return;
1083                 }
1084
1085                 hir::Node::Item(hir::Item {
1086                     kind: hir::ItemKind::Fn(_, generics, _), ..
1087                 }) |
1088                 hir::Node::TraitItem(hir::TraitItem {
1089                     generics,
1090                     kind: hir::TraitItemKind::Method(..), ..
1091                 }) |
1092                 hir::Node::ImplItem(hir::ImplItem {
1093                     generics,
1094                     kind: hir::ImplItemKind::Method(..), ..
1095                 }) |
1096                 hir::Node::Item(hir::Item {
1097                     kind: hir::ItemKind::Trait(_, _, generics, _, _), ..
1098                 }) |
1099                 hir::Node::Item(hir::Item {
1100                     kind: hir::ItemKind::Impl(_, _, _, generics, ..), ..
1101                 }) if projection.is_some() => {
1102                     // Missing associated type bound.
1103                     suggest_restriction(&generics, "the associated type");
1104                     return;
1105                 }
1106
1107                 hir::Node::Item(hir::Item { kind: hir::ItemKind::Struct(_, generics), span, .. }) |
1108                 hir::Node::Item(hir::Item { kind: hir::ItemKind::Enum(_, generics), span, .. }) |
1109                 hir::Node::Item(hir::Item { kind: hir::ItemKind::Union(_, generics), span, .. }) |
1110                 hir::Node::Item(hir::Item {
1111                     kind: hir::ItemKind::Trait(_, _, generics, ..), span, ..
1112                 }) |
1113                 hir::Node::Item(hir::Item {
1114                     kind: hir::ItemKind::Impl(_, _, _, generics, ..), span, ..
1115                 }) |
1116                 hir::Node::Item(hir::Item {
1117                     kind: hir::ItemKind::Fn(_, generics, _), span, ..
1118                 }) |
1119                 hir::Node::Item(hir::Item {
1120                     kind: hir::ItemKind::TyAlias(_, generics), span, ..
1121                 }) |
1122                 hir::Node::Item(hir::Item {
1123                     kind: hir::ItemKind::TraitAlias(generics, _), span, ..
1124                 }) |
1125                 hir::Node::Item(hir::Item {
1126                     kind: hir::ItemKind::OpaqueTy(hir::OpaqueTy { generics, .. }), span, ..
1127                 }) |
1128                 hir::Node::TraitItem(hir::TraitItem { generics, span, .. }) |
1129                 hir::Node::ImplItem(hir::ImplItem { generics, span, .. })
1130                 if param_ty => {
1131                     // Missing generic type parameter bound.
1132                     let restrict_msg = "consider further restricting this bound";
1133                     let param_name = self_ty.to_string();
1134                     for param in generics.params.iter().filter(|p| {
1135                         p.name.ident().as_str() == param_name
1136                     }) {
1137                         if param_name.starts_with("impl ") {
1138                             // `impl Trait` in argument:
1139                             // `fn foo(x: impl Trait) {}` → `fn foo(t: impl Trait + Trait2) {}`
1140                             err.span_suggestion(
1141                                 param.span,
1142                                 restrict_msg,
1143                                 // `impl CurrentTrait + MissingTrait`
1144                                 format!("{} + {}", param.name.ident(), trait_ref),
1145                                 Applicability::MachineApplicable,
1146                             );
1147                         } else if generics.where_clause.predicates.is_empty() &&
1148                                 param.bounds.is_empty()
1149                         {
1150                             // If there are no bounds whatsoever, suggest adding a constraint
1151                             // to the type parameter:
1152                             // `fn foo<T>(t: T) {}` → `fn foo<T: Trait>(t: T) {}`
1153                             err.span_suggestion(
1154                                 param.span,
1155                                 "consider restricting this bound",
1156                                 format!("{}", trait_ref.to_predicate()),
1157                                 Applicability::MachineApplicable,
1158                             );
1159                         } else if !generics.where_clause.predicates.is_empty() {
1160                             // There is a `where` clause, so suggest expanding it:
1161                             // `fn foo<T>(t: T) where T: Debug {}` →
1162                             // `fn foo<T>(t: T) where T: Debug, T: Trait {}`
1163                             err.span_suggestion(
1164                                 generics.where_clause.span().unwrap().shrink_to_hi(),
1165                                 &format!(
1166                                     "consider further restricting type parameter `{}`",
1167                                     param_name,
1168                                 ),
1169                                 format!(", {}", trait_ref.to_predicate()),
1170                                 Applicability::MachineApplicable,
1171                             );
1172                         } else {
1173                             // If there is no `where` clause lean towards constraining to the
1174                             // type parameter:
1175                             // `fn foo<X: Bar, T>(t: T, x: X) {}` → `fn foo<T: Trait>(t: T) {}`
1176                             // `fn foo<T: Bar>(t: T) {}` → `fn foo<T: Bar + Trait>(t: T) {}`
1177                             let sp = param.span.with_hi(span.hi());
1178                             let span = self.tcx.sess.source_map()
1179                                 .span_through_char(sp, ':');
1180                             if sp != param.span && sp != span {
1181                                 // Only suggest if we have high certainty that the span
1182                                 // covers the colon in `foo<T: Trait>`.
1183                                 err.span_suggestion(span, restrict_msg, format!(
1184                                     "{} + ",
1185                                     trait_ref.to_predicate(),
1186                                 ), Applicability::MachineApplicable);
1187                             } else {
1188                                 err.span_label(param.span, &format!(
1189                                     "consider adding a `where {}` bound",
1190                                     trait_ref.to_predicate(),
1191                                 ));
1192                             }
1193                         }
1194                         return;
1195                     }
1196                 }
1197
1198                 hir::Node::Crate => return,
1199
1200                 _ => {}
1201             }
1202
1203             hir_id = self.tcx.hir().get_parent_item(hir_id);
1204         }
1205     }
1206
1207     /// When encountering an assignment of an unsized trait, like `let x = ""[..];`, provide a
1208     /// suggestion to borrow the initializer in order to use have a slice instead.
1209     fn suggest_borrow_on_unsized_slice(
1210         &self,
1211         code: &ObligationCauseCode<'tcx>,
1212         err: &mut DiagnosticBuilder<'tcx>,
1213     ) {
1214         if let &ObligationCauseCode::VariableType(hir_id) = code {
1215             let parent_node = self.tcx.hir().get_parent_node(hir_id);
1216             if let Some(Node::Local(ref local)) = self.tcx.hir().find(parent_node) {
1217                 if let Some(ref expr) = local.init {
1218                     if let hir::ExprKind::Index(_, _) = expr.kind {
1219                         if let Ok(snippet) = self.tcx.sess.source_map().span_to_snippet(expr.span) {
1220                             err.span_suggestion(
1221                                 expr.span,
1222                                 "consider borrowing here",
1223                                 format!("&{}", snippet),
1224                                 Applicability::MachineApplicable
1225                             );
1226                         }
1227                     }
1228                 }
1229             }
1230         }
1231     }
1232
1233     fn suggest_fn_call(
1234         &self,
1235         obligation: &PredicateObligation<'tcx>,
1236         err: &mut DiagnosticBuilder<'_>,
1237         trait_ref: &ty::Binder<ty::TraitRef<'tcx>>,
1238         points_at_arg: bool,
1239     ) {
1240         let self_ty = trait_ref.self_ty();
1241         match self_ty.kind {
1242             ty::FnDef(def_id, _) => {
1243                 // We tried to apply the bound to an `fn`. Check whether calling it would evaluate
1244                 // to a type that *would* satisfy the trait binding. If it would, suggest calling
1245                 // it: `bar(foo)` -> `bar(foo)`. This case is *very* likely to be hit if `foo` is
1246                 // `async`.
1247                 let output_ty = self_ty.fn_sig(self.tcx).output();
1248                 let new_trait_ref = ty::TraitRef {
1249                     def_id: trait_ref.def_id(),
1250                     substs: self.tcx.mk_substs_trait(output_ty.skip_binder(), &[]),
1251                 };
1252                 let obligation = Obligation::new(
1253                     obligation.cause.clone(),
1254                     obligation.param_env,
1255                     new_trait_ref.to_predicate(),
1256                 );
1257                 match self.evaluate_obligation(&obligation) {
1258                     Ok(EvaluationResult::EvaluatedToOk) |
1259                     Ok(EvaluationResult::EvaluatedToOkModuloRegions) |
1260                     Ok(EvaluationResult::EvaluatedToAmbig) => {
1261                         if let Some(hir::Node::Item(hir::Item {
1262                             ident,
1263                             kind: hir::ItemKind::Fn(.., body_id),
1264                             ..
1265                         })) = self.tcx.hir().get_if_local(def_id) {
1266                             let body = self.tcx.hir().body(*body_id);
1267                             let msg = "use parentheses to call the function";
1268                             let snippet = format!(
1269                                 "{}({})",
1270                                 ident,
1271                                 body.params.iter()
1272                                     .map(|arg| match &arg.pat.kind {
1273                                         hir::PatKind::Binding(_, _, ident, None)
1274                                         if ident.name != kw::SelfLower => ident.to_string(),
1275                                         _ => "_".to_string(),
1276                                     }).collect::<Vec<_>>().join(", "),
1277                             );
1278                             // When the obligation error has been ensured to have been caused by
1279                             // an argument, the `obligation.cause.span` points at the expression
1280                             // of the argument, so we can provide a suggestion. This is signaled
1281                             // by `points_at_arg`. Otherwise, we give a more general note.
1282                             if points_at_arg {
1283                                 err.span_suggestion(
1284                                     obligation.cause.span,
1285                                     msg,
1286                                     snippet,
1287                                     Applicability::HasPlaceholders,
1288                                 );
1289                             } else {
1290                                 err.help(&format!("{}: `{}`", msg, snippet));
1291                             }
1292                         }
1293                     }
1294                     _ => {}
1295                 }
1296             }
1297             _ => {}
1298         }
1299     }
1300
1301     /// Whenever references are used by mistake, like `for (i, e) in &vec.iter().enumerate()`,
1302     /// suggest removing these references until we reach a type that implements the trait.
1303     fn suggest_remove_reference(
1304         &self,
1305         obligation: &PredicateObligation<'tcx>,
1306         err: &mut DiagnosticBuilder<'tcx>,
1307         trait_ref: &ty::Binder<ty::TraitRef<'tcx>>,
1308     ) {
1309         let trait_ref = trait_ref.skip_binder();
1310         let span = obligation.cause.span;
1311
1312         if let Ok(snippet) = self.tcx.sess.source_map().span_to_snippet(span) {
1313             let refs_number = snippet.chars()
1314                 .filter(|c| !c.is_whitespace())
1315                 .take_while(|c| *c == '&')
1316                 .count();
1317             if let Some('\'') = snippet.chars()
1318                 .filter(|c| !c.is_whitespace())
1319                 .skip(refs_number)
1320                 .next()
1321             { // Do not suggest removal of borrow from type arguments.
1322                 return;
1323             }
1324
1325             let mut trait_type = trait_ref.self_ty();
1326
1327             for refs_remaining in 0..refs_number {
1328                 if let ty::Ref(_, t_type, _) = trait_type.kind {
1329                     trait_type = t_type;
1330
1331                     let substs = self.tcx.mk_substs_trait(trait_type, &[]);
1332                     let new_trait_ref = ty::TraitRef::new(trait_ref.def_id, substs);
1333                     let new_obligation = Obligation::new(
1334                         ObligationCause::dummy(),
1335                         obligation.param_env,
1336                         new_trait_ref.to_predicate(),
1337                     );
1338
1339                     if self.predicate_may_hold(&new_obligation) {
1340                         let sp = self.tcx.sess.source_map()
1341                             .span_take_while(span, |c| c.is_whitespace() || *c == '&');
1342
1343                         let remove_refs = refs_remaining + 1;
1344                         let format_str = format!("consider removing {} leading `&`-references",
1345                                                  remove_refs);
1346
1347                         err.span_suggestion_short(
1348                             sp, &format_str, String::new(), Applicability::MachineApplicable
1349                         );
1350                         break;
1351                     }
1352                 } else {
1353                     break;
1354                 }
1355             }
1356         }
1357     }
1358
1359     /// Check if the trait bound is implemented for a different mutability and note it in the
1360     /// final error.
1361     fn suggest_change_mut(
1362         &self,
1363         obligation: &PredicateObligation<'tcx>,
1364         err: &mut DiagnosticBuilder<'tcx>,
1365         trait_ref: &ty::Binder<ty::TraitRef<'tcx>>,
1366         points_at_arg: bool,
1367     ) {
1368         let span = obligation.cause.span;
1369         if let Ok(snippet) = self.tcx.sess.source_map().span_to_snippet(span) {
1370             let refs_number = snippet.chars()
1371                 .filter(|c| !c.is_whitespace())
1372                 .take_while(|c| *c == '&')
1373                 .count();
1374             if let Some('\'') = snippet.chars()
1375                 .filter(|c| !c.is_whitespace())
1376                 .skip(refs_number)
1377                 .next()
1378             { // Do not suggest removal of borrow from type arguments.
1379                 return;
1380             }
1381             let trait_ref = self.resolve_vars_if_possible(trait_ref);
1382             if trait_ref.has_infer_types() {
1383                 // Do not ICE while trying to find if a reborrow would succeed on a trait with
1384                 // unresolved bindings.
1385                 return;
1386             }
1387
1388             if let ty::Ref(region, t_type, mutability) = trait_ref.skip_binder().self_ty().kind {
1389                 let trait_type = match mutability {
1390                     hir::Mutability::Mutable => self.tcx.mk_imm_ref(region, t_type),
1391                     hir::Mutability::Immutable => self.tcx.mk_mut_ref(region, t_type),
1392                 };
1393
1394                 let substs = self.tcx.mk_substs_trait(&trait_type, &[]);
1395                 let new_trait_ref = ty::TraitRef::new(trait_ref.skip_binder().def_id, substs);
1396                 let new_obligation = Obligation::new(
1397                     ObligationCause::dummy(),
1398                     obligation.param_env,
1399                     new_trait_ref.to_predicate(),
1400                 );
1401
1402                 if self.evaluate_obligation_no_overflow(
1403                     &new_obligation,
1404                 ).must_apply_modulo_regions() {
1405                     let sp = self.tcx.sess.source_map()
1406                         .span_take_while(span, |c| c.is_whitespace() || *c == '&');
1407                     if points_at_arg &&
1408                         mutability == hir::Mutability::Immutable &&
1409                         refs_number > 0
1410                     {
1411                         err.span_suggestion(
1412                             sp,
1413                             "consider changing this borrow's mutability",
1414                             "&mut ".to_string(),
1415                             Applicability::MachineApplicable,
1416                         );
1417                     } else {
1418                         err.note(&format!(
1419                             "`{}` is implemented for `{:?}`, but not for `{:?}`",
1420                             trait_ref,
1421                             trait_type,
1422                             trait_ref.skip_binder().self_ty(),
1423                         ));
1424                     }
1425                 }
1426             }
1427         }
1428     }
1429
1430     fn suggest_semicolon_removal(
1431         &self,
1432         obligation: &PredicateObligation<'tcx>,
1433         err: &mut DiagnosticBuilder<'tcx>,
1434         span: Span,
1435         trait_ref: &ty::Binder<ty::TraitRef<'tcx>>,
1436     ) {
1437         let hir = self.tcx.hir();
1438         let parent_node = hir.get_parent_node(obligation.cause.body_id);
1439         let node = hir.find(parent_node);
1440         if let Some(hir::Node::Item(hir::Item {
1441             kind: hir::ItemKind::Fn(sig, _, body_id),
1442             ..
1443         })) = node {
1444             let body = hir.body(*body_id);
1445             if let hir::ExprKind::Block(blk, _) = &body.value.kind {
1446                 if sig.decl.output.span().overlaps(span) && blk.expr.is_none() &&
1447                     "()" == &trait_ref.self_ty().to_string()
1448                 {
1449                     // FIXME(estebank): When encountering a method with a trait
1450                     // bound not satisfied in the return type with a body that has
1451                     // no return, suggest removal of semicolon on last statement.
1452                     // Once that is added, close #54771.
1453                     if let Some(ref stmt) = blk.stmts.last() {
1454                         let sp = self.tcx.sess.source_map().end_point(stmt.span);
1455                         err.span_label(sp, "consider removing this semicolon");
1456                     }
1457                 }
1458             }
1459         }
1460     }
1461
1462     /// Given some node representing a fn-like thing in the HIR map,
1463     /// returns a span and `ArgKind` information that describes the
1464     /// arguments it expects. This can be supplied to
1465     /// `report_arg_count_mismatch`.
1466     pub fn get_fn_like_arguments(&self, node: Node<'_>) -> (Span, Vec<ArgKind>) {
1467         match node {
1468             Node::Expr(&hir::Expr {
1469                 kind: hir::ExprKind::Closure(_, ref _decl, id, span, _),
1470                 ..
1471             }) => {
1472                 (self.tcx.sess.source_map().def_span(span),
1473                  self.tcx.hir().body(id).params.iter()
1474                     .map(|arg| {
1475                         if let hir::Pat {
1476                             kind: hir::PatKind::Tuple(ref args, _),
1477                             span,
1478                             ..
1479                         } = *arg.pat {
1480                             ArgKind::Tuple(
1481                                 Some(span),
1482                                 args.iter().map(|pat| {
1483                                     let snippet = self.tcx.sess.source_map()
1484                                         .span_to_snippet(pat.span).unwrap();
1485                                     (snippet, "_".to_owned())
1486                                 }).collect::<Vec<_>>(),
1487                             )
1488                         } else {
1489                             let name = self.tcx.sess.source_map()
1490                                 .span_to_snippet(arg.pat.span).unwrap();
1491                             ArgKind::Arg(name, "_".to_owned())
1492                         }
1493                     })
1494                     .collect::<Vec<ArgKind>>())
1495             }
1496             Node::Item(&hir::Item {
1497                 span,
1498                 kind: hir::ItemKind::Fn(ref sig, ..),
1499                 ..
1500             }) |
1501             Node::ImplItem(&hir::ImplItem {
1502                 span,
1503                 kind: hir::ImplItemKind::Method(ref sig, _),
1504                 ..
1505             }) |
1506             Node::TraitItem(&hir::TraitItem {
1507                 span,
1508                 kind: hir::TraitItemKind::Method(ref sig, _),
1509                 ..
1510             }) => {
1511                 (self.tcx.sess.source_map().def_span(span), sig.decl.inputs.iter()
1512                         .map(|arg| match arg.clone().kind {
1513                     hir::TyKind::Tup(ref tys) => ArgKind::Tuple(
1514                         Some(arg.span),
1515                         vec![("_".to_owned(), "_".to_owned()); tys.len()]
1516                     ),
1517                     _ => ArgKind::empty()
1518                 }).collect::<Vec<ArgKind>>())
1519             }
1520             Node::Ctor(ref variant_data) => {
1521                 let span = variant_data.ctor_hir_id()
1522                     .map(|hir_id| self.tcx.hir().span(hir_id))
1523                     .unwrap_or(DUMMY_SP);
1524                 let span = self.tcx.sess.source_map().def_span(span);
1525
1526                 (span, vec![ArgKind::empty(); variant_data.fields().len()])
1527             }
1528             _ => panic!("non-FnLike node found: {:?}", node),
1529         }
1530     }
1531
1532     /// Reports an error when the number of arguments needed by a
1533     /// trait match doesn't match the number that the expression
1534     /// provides.
1535     pub fn report_arg_count_mismatch(
1536         &self,
1537         span: Span,
1538         found_span: Option<Span>,
1539         expected_args: Vec<ArgKind>,
1540         found_args: Vec<ArgKind>,
1541         is_closure: bool,
1542     ) -> DiagnosticBuilder<'tcx> {
1543         let kind = if is_closure { "closure" } else { "function" };
1544
1545         let args_str = |arguments: &[ArgKind], other: &[ArgKind]| {
1546             let arg_length = arguments.len();
1547             let distinct = match &other[..] {
1548                 &[ArgKind::Tuple(..)] => true,
1549                 _ => false,
1550             };
1551             match (arg_length, arguments.get(0)) {
1552                 (1, Some(&ArgKind::Tuple(_, ref fields))) => {
1553                     format!("a single {}-tuple as argument", fields.len())
1554                 }
1555                 _ => format!("{} {}argument{}",
1556                              arg_length,
1557                              if distinct && arg_length > 1 { "distinct " } else { "" },
1558                              pluralize!(arg_length))
1559             }
1560         };
1561
1562         let expected_str = args_str(&expected_args, &found_args);
1563         let found_str = args_str(&found_args, &expected_args);
1564
1565         let mut err = struct_span_err!(
1566             self.tcx.sess,
1567             span,
1568             E0593,
1569             "{} is expected to take {}, but it takes {}",
1570             kind,
1571             expected_str,
1572             found_str,
1573         );
1574
1575         err.span_label(span, format!("expected {} that takes {}", kind, expected_str));
1576
1577         if let Some(found_span) = found_span {
1578             err.span_label(found_span, format!("takes {}", found_str));
1579
1580             // move |_| { ... }
1581             // ^^^^^^^^-- def_span
1582             //
1583             // move |_| { ... }
1584             // ^^^^^-- prefix
1585             let prefix_span = self.tcx.sess.source_map().span_until_non_whitespace(found_span);
1586             // move |_| { ... }
1587             //      ^^^-- pipe_span
1588             let pipe_span = if let Some(span) = found_span.trim_start(prefix_span) {
1589                 span
1590             } else {
1591                 found_span
1592             };
1593
1594             // Suggest to take and ignore the arguments with expected_args_length `_`s if
1595             // found arguments is empty (assume the user just wants to ignore args in this case).
1596             // For example, if `expected_args_length` is 2, suggest `|_, _|`.
1597             if found_args.is_empty() && is_closure {
1598                 let underscores = vec!["_"; expected_args.len()].join(", ");
1599                 err.span_suggestion(
1600                     pipe_span,
1601                     &format!(
1602                         "consider changing the closure to take and ignore the expected argument{}",
1603                         if expected_args.len() < 2 {
1604                             ""
1605                         } else {
1606                             "s"
1607                         }
1608                     ),
1609                     format!("|{}|", underscores),
1610                     Applicability::MachineApplicable,
1611                 );
1612             }
1613
1614             if let &[ArgKind::Tuple(_, ref fields)] = &found_args[..] {
1615                 if fields.len() == expected_args.len() {
1616                     let sugg = fields.iter()
1617                         .map(|(name, _)| name.to_owned())
1618                         .collect::<Vec<String>>()
1619                         .join(", ");
1620                     err.span_suggestion(
1621                         found_span,
1622                         "change the closure to take multiple arguments instead of a single tuple",
1623                         format!("|{}|", sugg),
1624                         Applicability::MachineApplicable,
1625                     );
1626                 }
1627             }
1628             if let &[ArgKind::Tuple(_, ref fields)] = &expected_args[..] {
1629                 if fields.len() == found_args.len() && is_closure {
1630                     let sugg = format!(
1631                         "|({}){}|",
1632                         found_args.iter()
1633                             .map(|arg| match arg {
1634                                 ArgKind::Arg(name, _) => name.to_owned(),
1635                                 _ => "_".to_owned(),
1636                             })
1637                             .collect::<Vec<String>>()
1638                             .join(", "),
1639                         // add type annotations if available
1640                         if found_args.iter().any(|arg| match arg {
1641                             ArgKind::Arg(_, ty) => ty != "_",
1642                             _ => false,
1643                         }) {
1644                             format!(": ({})",
1645                                     fields.iter()
1646                                         .map(|(_, ty)| ty.to_owned())
1647                                         .collect::<Vec<String>>()
1648                                         .join(", "))
1649                         } else {
1650                             String::new()
1651                         },
1652                     );
1653                     err.span_suggestion(
1654                         found_span,
1655                         "change the closure to accept a tuple instead of individual arguments",
1656                         sugg,
1657                         Applicability::MachineApplicable,
1658                     );
1659                 }
1660             }
1661         }
1662
1663         err
1664     }
1665
1666     fn report_closure_arg_mismatch(
1667         &self,
1668         span: Span,
1669         found_span: Option<Span>,
1670         expected_ref: ty::PolyTraitRef<'tcx>,
1671         found: ty::PolyTraitRef<'tcx>,
1672     ) -> DiagnosticBuilder<'tcx> {
1673         fn build_fn_sig_string<'tcx>(tcx: TyCtxt<'tcx>, trait_ref: &ty::TraitRef<'tcx>) -> String {
1674             let inputs = trait_ref.substs.type_at(1);
1675             let sig = if let ty::Tuple(inputs) = inputs.kind {
1676                 tcx.mk_fn_sig(
1677                     inputs.iter().map(|k| k.expect_ty()),
1678                     tcx.mk_ty_infer(ty::TyVar(ty::TyVid { index: 0 })),
1679                     false,
1680                     hir::Unsafety::Normal,
1681                     ::rustc_target::spec::abi::Abi::Rust
1682                 )
1683             } else {
1684                 tcx.mk_fn_sig(
1685                     ::std::iter::once(inputs),
1686                     tcx.mk_ty_infer(ty::TyVar(ty::TyVid { index: 0 })),
1687                     false,
1688                     hir::Unsafety::Normal,
1689                     ::rustc_target::spec::abi::Abi::Rust
1690                 )
1691             };
1692             ty::Binder::bind(sig).to_string()
1693         }
1694
1695         let argument_is_closure = expected_ref.skip_binder().substs.type_at(0).is_closure();
1696         let mut err = struct_span_err!(self.tcx.sess, span, E0631,
1697                                        "type mismatch in {} arguments",
1698                                        if argument_is_closure { "closure" } else { "function" });
1699
1700         let found_str = format!(
1701             "expected signature of `{}`",
1702             build_fn_sig_string(self.tcx, found.skip_binder())
1703         );
1704         err.span_label(span, found_str);
1705
1706         let found_span = found_span.unwrap_or(span);
1707         let expected_str = format!(
1708             "found signature of `{}`",
1709             build_fn_sig_string(self.tcx, expected_ref.skip_binder())
1710         );
1711         err.span_label(found_span, expected_str);
1712
1713         err
1714     }
1715 }
1716
1717 impl<'tcx> TyCtxt<'tcx> {
1718     pub fn recursive_type_with_infinite_size_error(self,
1719                                                    type_def_id: DefId)
1720                                                    -> DiagnosticBuilder<'tcx>
1721     {
1722         assert!(type_def_id.is_local());
1723         let span = self.hir().span_if_local(type_def_id).unwrap();
1724         let span = self.sess.source_map().def_span(span);
1725         let mut err = struct_span_err!(self.sess, span, E0072,
1726                                        "recursive type `{}` has infinite size",
1727                                        self.def_path_str(type_def_id));
1728         err.span_label(span, "recursive type has infinite size");
1729         err.help(&format!("insert indirection (e.g., a `Box`, `Rc`, or `&`) \
1730                            at some point to make `{}` representable",
1731                           self.def_path_str(type_def_id)));
1732         err
1733     }
1734
1735     pub fn report_object_safety_error(
1736         self,
1737         span: Span,
1738         trait_def_id: DefId,
1739         violations: Vec<ObjectSafetyViolation>,
1740     ) -> DiagnosticBuilder<'tcx> {
1741         let trait_str = self.def_path_str(trait_def_id);
1742         let span = self.sess.source_map().def_span(span);
1743         let mut err = struct_span_err!(
1744             self.sess, span, E0038,
1745             "the trait `{}` cannot be made into an object",
1746             trait_str);
1747         err.span_label(span, format!("the trait `{}` cannot be made into an object", trait_str));
1748
1749         let mut reported_violations = FxHashSet::default();
1750         for violation in violations {
1751             if reported_violations.insert(violation.clone()) {
1752                 match violation.span() {
1753                     Some(span) => err.span_label(span, violation.error_msg()),
1754                     None => err.note(&violation.error_msg()),
1755                 };
1756             }
1757         }
1758
1759         if self.sess.trait_methods_not_found.borrow().contains(&span) {
1760             // Avoid emitting error caused by non-existing method (#58734)
1761             err.cancel();
1762         }
1763
1764         err
1765     }
1766 }
1767
1768 impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
1769     fn maybe_report_ambiguity(
1770         &self,
1771         obligation: &PredicateObligation<'tcx>,
1772         body_id: Option<hir::BodyId>,
1773     ) {
1774         // Unable to successfully determine, probably means
1775         // insufficient type information, but could mean
1776         // ambiguous impls. The latter *ought* to be a
1777         // coherence violation, so we don't report it here.
1778
1779         let predicate = self.resolve_vars_if_possible(&obligation.predicate);
1780         let span = obligation.cause.span;
1781
1782         debug!(
1783             "maybe_report_ambiguity(predicate={:?}, obligation={:?} body_id={:?}, code={:?})",
1784             predicate,
1785             obligation,
1786             body_id,
1787             obligation.cause.code,
1788         );
1789
1790         // Ambiguity errors are often caused as fallout from earlier
1791         // errors. So just ignore them if this infcx is tainted.
1792         if self.is_tainted_by_errors() {
1793             return;
1794         }
1795
1796         match predicate {
1797             ty::Predicate::Trait(ref data) => {
1798                 let trait_ref = data.to_poly_trait_ref();
1799                 let self_ty = trait_ref.self_ty();
1800                 debug!("self_ty {:?} {:?} trait_ref {:?}", self_ty, self_ty.kind, trait_ref);
1801
1802                 if predicate.references_error() {
1803                     return;
1804                 }
1805                 // Typically, this ambiguity should only happen if
1806                 // there are unresolved type inference variables
1807                 // (otherwise it would suggest a coherence
1808                 // failure). But given #21974 that is not necessarily
1809                 // the case -- we can have multiple where clauses that
1810                 // are only distinguished by a region, which results
1811                 // in an ambiguity even when all types are fully
1812                 // known, since we don't dispatch based on region
1813                 // relationships.
1814
1815                 // This is kind of a hack: it frequently happens that some earlier
1816                 // error prevents types from being fully inferred, and then we get
1817                 // a bunch of uninteresting errors saying something like "<generic
1818                 // #0> doesn't implement Sized".  It may even be true that we
1819                 // could just skip over all checks where the self-ty is an
1820                 // inference variable, but I was afraid that there might be an
1821                 // inference variable created, registered as an obligation, and
1822                 // then never forced by writeback, and hence by skipping here we'd
1823                 // be ignoring the fact that we don't KNOW the type works
1824                 // out. Though even that would probably be harmless, given that
1825                 // we're only talking about builtin traits, which are known to be
1826                 // inhabited. We used to check for `self.tcx.sess.has_errors()` to
1827                 // avoid inundating the user with unnecessary errors, but we now
1828                 // check upstream for type errors and dont add the obligations to
1829                 // begin with in those cases.
1830                 if
1831                     self.tcx.lang_items().sized_trait()
1832                     .map_or(false, |sized_id| sized_id == trait_ref.def_id())
1833                 {
1834                     self.need_type_info_err(body_id, span, self_ty).emit();
1835                 } else {
1836                     let mut err = struct_span_err!(
1837                         self.tcx.sess,
1838                         span,
1839                         E0283,
1840                         "type annotations needed: cannot resolve `{}`",
1841                         predicate,
1842                     );
1843                     self.note_obligation_cause(&mut err, obligation);
1844                     err.emit();
1845                 }
1846             }
1847
1848             ty::Predicate::WellFormed(ty) => {
1849                 // Same hacky approach as above to avoid deluging user
1850                 // with error messages.
1851                 if !ty.references_error() && !self.tcx.sess.has_errors() {
1852                     self.need_type_info_err(body_id, span, ty).emit();
1853                 }
1854             }
1855
1856             ty::Predicate::Subtype(ref data) => {
1857                 if data.references_error() || self.tcx.sess.has_errors() {
1858                     // no need to overload user in such cases
1859                 } else {
1860                     let &SubtypePredicate { a_is_expected: _, a, b } = data.skip_binder();
1861                     // both must be type variables, or the other would've been instantiated
1862                     assert!(a.is_ty_var() && b.is_ty_var());
1863                     self.need_type_info_err(body_id,
1864                                             obligation.cause.span,
1865                                             a).emit();
1866                 }
1867             }
1868
1869             _ => {
1870                 if !self.tcx.sess.has_errors() {
1871                     let mut err = struct_span_err!(
1872                         self.tcx.sess,
1873                         obligation.cause.span,
1874                         E0284,
1875                         "type annotations needed: cannot resolve `{}`",
1876                         predicate,
1877                     );
1878                     self.note_obligation_cause(&mut err, obligation);
1879                     err.emit();
1880                 }
1881             }
1882         }
1883     }
1884
1885     /// Returns `true` if the trait predicate may apply for *some* assignment
1886     /// to the type parameters.
1887     fn predicate_can_apply(
1888         &self,
1889         param_env: ty::ParamEnv<'tcx>,
1890         pred: ty::PolyTraitRef<'tcx>,
1891     ) -> bool {
1892         struct ParamToVarFolder<'a, 'tcx> {
1893             infcx: &'a InferCtxt<'a, 'tcx>,
1894             var_map: FxHashMap<Ty<'tcx>, Ty<'tcx>>,
1895         }
1896
1897         impl<'a, 'tcx> TypeFolder<'tcx> for ParamToVarFolder<'a, 'tcx> {
1898             fn tcx<'b>(&'b self) -> TyCtxt<'tcx> { self.infcx.tcx }
1899
1900             fn fold_ty(&mut self, ty: Ty<'tcx>) -> Ty<'tcx> {
1901                 if let ty::Param(ty::ParamTy {name, .. }) = ty.kind {
1902                     let infcx = self.infcx;
1903                     self.var_map.entry(ty).or_insert_with(||
1904                         infcx.next_ty_var(
1905                             TypeVariableOrigin {
1906                                 kind: TypeVariableOriginKind::TypeParameterDefinition(name),
1907                                 span: DUMMY_SP,
1908                             }
1909                         )
1910                     )
1911                 } else {
1912                     ty.super_fold_with(self)
1913                 }
1914             }
1915         }
1916
1917         self.probe(|_| {
1918             let mut selcx = SelectionContext::new(self);
1919
1920             let cleaned_pred = pred.fold_with(&mut ParamToVarFolder {
1921                 infcx: self,
1922                 var_map: Default::default()
1923             });
1924
1925             let cleaned_pred = super::project::normalize(
1926                 &mut selcx,
1927                 param_env,
1928                 ObligationCause::dummy(),
1929                 &cleaned_pred
1930             ).value;
1931
1932             let obligation = Obligation::new(
1933                 ObligationCause::dummy(),
1934                 param_env,
1935                 cleaned_pred.to_predicate()
1936             );
1937
1938             self.predicate_may_hold(&obligation)
1939         })
1940     }
1941
1942     fn note_obligation_cause(
1943         &self,
1944         err: &mut DiagnosticBuilder<'_>,
1945         obligation: &PredicateObligation<'tcx>,
1946     ) {
1947         // First, attempt to add note to this error with an async-await-specific
1948         // message, and fall back to regular note otherwise.
1949         if !self.note_obligation_cause_for_async_await(err, obligation) {
1950             self.note_obligation_cause_code(err, &obligation.predicate, &obligation.cause.code,
1951                                             &mut vec![]);
1952         }
1953     }
1954
1955     /// Adds an async-await specific note to the diagnostic:
1956     ///
1957     /// ```ignore (diagnostic)
1958     /// note: future does not implement `std::marker::Send` because this value is used across an
1959     ///       await
1960     ///   --> $DIR/issue-64130-non-send-future-diags.rs:15:5
1961     ///    |
1962     /// LL |     let g = x.lock().unwrap();
1963     ///    |         - has type `std::sync::MutexGuard<'_, u32>`
1964     /// LL |     baz().await;
1965     ///    |     ^^^^^^^^^^^ await occurs here, with `g` maybe used later
1966     /// LL | }
1967     ///    | - `g` is later dropped here
1968     /// ```
1969     ///
1970     /// Returns `true` if an async-await specific note was added to the diagnostic.
1971     fn note_obligation_cause_for_async_await(
1972         &self,
1973         err: &mut DiagnosticBuilder<'_>,
1974         obligation: &PredicateObligation<'tcx>,
1975     ) -> bool {
1976         debug!("note_obligation_cause_for_async_await: obligation.predicate={:?} \
1977                 obligation.cause.span={:?}", obligation.predicate, obligation.cause.span);
1978         let source_map = self.tcx.sess.source_map();
1979
1980         // Look into the obligation predicate to determine the type in the generator which meant
1981         // that the predicate was not satisifed.
1982         let (trait_ref, target_ty) = match obligation.predicate {
1983             ty::Predicate::Trait(trait_predicate) =>
1984                 (trait_predicate.skip_binder().trait_ref, trait_predicate.skip_binder().self_ty()),
1985             _ => return false,
1986         };
1987         debug!("note_obligation_cause_for_async_await: target_ty={:?}", target_ty);
1988
1989         // Attempt to detect an async-await error by looking at the obligation causes, looking
1990         // for only generators, generator witnesses, opaque types or `std::future::GenFuture` to
1991         // be present.
1992         //
1993         // When a future does not implement a trait because of a captured type in one of the
1994         // generators somewhere in the call stack, then the result is a chain of obligations.
1995         // Given a `async fn` A that calls a `async fn` B which captures a non-send type and that
1996         // future is passed as an argument to a function C which requires a `Send` type, then the
1997         // chain looks something like this:
1998         //
1999         // - `BuiltinDerivedObligation` with a generator witness (B)
2000         // - `BuiltinDerivedObligation` with a generator (B)
2001         // - `BuiltinDerivedObligation` with `std::future::GenFuture` (B)
2002         // - `BuiltinDerivedObligation` with `impl std::future::Future` (B)
2003         // - `BuiltinDerivedObligation` with `impl std::future::Future` (B)
2004         // - `BuiltinDerivedObligation` with a generator witness (A)
2005         // - `BuiltinDerivedObligation` with a generator (A)
2006         // - `BuiltinDerivedObligation` with `std::future::GenFuture` (A)
2007         // - `BuiltinDerivedObligation` with `impl std::future::Future` (A)
2008         // - `BuiltinDerivedObligation` with `impl std::future::Future` (A)
2009         // - `BindingObligation` with `impl_send (Send requirement)
2010         //
2011         // The first obligations in the chain can be used to get the details of the type that is
2012         // captured but the entire chain must be inspected to detect this case.
2013         let mut generator = None;
2014         let mut next_code = Some(&obligation.cause.code);
2015         while let Some(code) = next_code {
2016             debug!("note_obligation_cause_for_async_await: code={:?}", code);
2017             match code {
2018                 ObligationCauseCode::BuiltinDerivedObligation(derived_obligation) |
2019                 ObligationCauseCode::ImplDerivedObligation(derived_obligation) => {
2020                     debug!("note_obligation_cause_for_async_await: self_ty.kind={:?}",
2021                            derived_obligation.parent_trait_ref.self_ty().kind);
2022                     match derived_obligation.parent_trait_ref.self_ty().kind {
2023                         ty::Adt(ty::AdtDef { did, .. }, ..) if
2024                             self.tcx.is_diagnostic_item(sym::gen_future, *did) => {},
2025                         ty::Generator(did, ..) => generator = generator.or(Some(did)),
2026                         ty::GeneratorWitness(_) | ty::Opaque(..) => {},
2027                         _ => return false,
2028                     }
2029
2030                     next_code = Some(derived_obligation.parent_code.as_ref());
2031                 },
2032                 ObligationCauseCode::ItemObligation(_) | ObligationCauseCode::BindingObligation(..)
2033                     if generator.is_some() => break,
2034                 _ => return false,
2035             }
2036         }
2037
2038         let generator_did = generator.expect("can only reach this if there was a generator");
2039
2040         // Only continue to add a note if the generator is from an `async` function.
2041         let parent_node = self.tcx.parent(generator_did)
2042             .and_then(|parent_did| self.tcx.hir().get_if_local(parent_did));
2043         debug!("note_obligation_cause_for_async_await: parent_node={:?}", parent_node);
2044         if let Some(hir::Node::Item(hir::Item {
2045             kind: hir::ItemKind::Fn(sig, _, _),
2046             ..
2047         })) = parent_node {
2048             debug!("note_obligation_cause_for_async_await: header={:?}", sig.header);
2049             if sig.header.asyncness != hir::IsAsync::Async {
2050                 return false;
2051             }
2052         }
2053
2054         let span = self.tcx.def_span(generator_did);
2055         let tables = self.tcx.typeck_tables_of(generator_did);
2056         debug!("note_obligation_cause_for_async_await: generator_did={:?} span={:?} ",
2057                generator_did, span);
2058
2059         // Look for a type inside the generator interior that matches the target type to get
2060         // a span.
2061         let target_span = tables.generator_interior_types.iter()
2062             .find(|ty::GeneratorInteriorTypeCause { ty, .. }| ty::TyS::same_type(*ty, target_ty))
2063             .map(|ty::GeneratorInteriorTypeCause { span, scope_span, .. }|
2064                  (span, source_map.span_to_snippet(*span), scope_span));
2065         if let Some((target_span, Ok(snippet), scope_span)) = target_span {
2066             // Look at the last interior type to get a span for the `.await`.
2067             let await_span = tables.generator_interior_types.iter().map(|i| i.span).last().unwrap();
2068             let mut span = MultiSpan::from_span(await_span);
2069             span.push_span_label(
2070                 await_span, format!("await occurs here, with `{}` maybe used later", snippet));
2071
2072             span.push_span_label(*target_span, format!("has type `{}`", target_ty));
2073
2074             // If available, use the scope span to annotate the drop location.
2075             if let Some(scope_span) = scope_span {
2076                 span.push_span_label(
2077                     source_map.end_point(*scope_span),
2078                     format!("`{}` is later dropped here", snippet),
2079                 );
2080             }
2081
2082             err.span_note(span, &format!(
2083                 "future does not implement `{}` as this value is used across an await",
2084                 trait_ref,
2085             ));
2086
2087             // Add a note for the item obligation that remains - normally a note pointing to the
2088             // bound that introduced the obligation (e.g. `T: Send`).
2089             debug!("note_obligation_cause_for_async_await: next_code={:?}", next_code);
2090             self.note_obligation_cause_code(
2091                 err,
2092                 &obligation.predicate,
2093                 next_code.unwrap(),
2094                 &mut Vec::new(),
2095             );
2096
2097             true
2098         } else {
2099             false
2100         }
2101     }
2102
2103     fn note_obligation_cause_code<T>(&self,
2104                                      err: &mut DiagnosticBuilder<'_>,
2105                                      predicate: &T,
2106                                      cause_code: &ObligationCauseCode<'tcx>,
2107                                      obligated_types: &mut Vec<&ty::TyS<'tcx>>)
2108         where T: fmt::Display
2109     {
2110         let tcx = self.tcx;
2111         match *cause_code {
2112             ObligationCauseCode::ExprAssignable |
2113             ObligationCauseCode::MatchExpressionArm { .. } |
2114             ObligationCauseCode::MatchExpressionArmPattern { .. } |
2115             ObligationCauseCode::IfExpression { .. } |
2116             ObligationCauseCode::IfExpressionWithNoElse |
2117             ObligationCauseCode::MainFunctionType |
2118             ObligationCauseCode::StartFunctionType |
2119             ObligationCauseCode::IntrinsicType |
2120             ObligationCauseCode::MethodReceiver |
2121             ObligationCauseCode::ReturnNoExpression |
2122             ObligationCauseCode::MiscObligation => {}
2123             ObligationCauseCode::SliceOrArrayElem => {
2124                 err.note("slice and array elements must have `Sized` type");
2125             }
2126             ObligationCauseCode::TupleElem => {
2127                 err.note("only the last element of a tuple may have a dynamically sized type");
2128             }
2129             ObligationCauseCode::ProjectionWf(data) => {
2130                 err.note(&format!(
2131                     "required so that the projection `{}` is well-formed",
2132                     data,
2133                 ));
2134             }
2135             ObligationCauseCode::ReferenceOutlivesReferent(ref_ty) => {
2136                 err.note(&format!(
2137                     "required so that reference `{}` does not outlive its referent",
2138                     ref_ty,
2139                 ));
2140             }
2141             ObligationCauseCode::ObjectTypeBound(object_ty, region) => {
2142                 err.note(&format!(
2143                     "required so that the lifetime bound of `{}` for `{}` is satisfied",
2144                     region,
2145                     object_ty,
2146                 ));
2147             }
2148             ObligationCauseCode::ItemObligation(item_def_id) => {
2149                 let item_name = tcx.def_path_str(item_def_id);
2150                 let msg = format!("required by `{}`", item_name);
2151
2152                 if let Some(sp) = tcx.hir().span_if_local(item_def_id) {
2153                     let sp = tcx.sess.source_map().def_span(sp);
2154                     err.span_label(sp, &msg);
2155                 } else {
2156                     err.note(&msg);
2157                 }
2158             }
2159             ObligationCauseCode::BindingObligation(item_def_id, span) => {
2160                 let item_name = tcx.def_path_str(item_def_id);
2161                 let msg = format!("required by this bound in `{}`", item_name);
2162                 if let Some(ident) = tcx.opt_item_name(item_def_id) {
2163                     err.span_label(ident.span, "");
2164                 }
2165                 if span != DUMMY_SP {
2166                     err.span_label(span, &msg);
2167                 } else {
2168                     err.note(&msg);
2169                 }
2170             }
2171             ObligationCauseCode::ObjectCastObligation(object_ty) => {
2172                 err.note(&format!("required for the cast to the object type `{}`",
2173                                   self.ty_to_string(object_ty)));
2174             }
2175             ObligationCauseCode::Coercion { source: _, target } => {
2176                 err.note(&format!("required by cast to type `{}`",
2177                                   self.ty_to_string(target)));
2178             }
2179             ObligationCauseCode::RepeatVec(suggest_const_in_array_repeat_expressions) => {
2180                 err.note("the `Copy` trait is required because the \
2181                           repeated element will be copied");
2182                 if suggest_const_in_array_repeat_expressions {
2183                     err.note("this array initializer can be evaluated at compile-time, for more \
2184                               information, see issue \
2185                               https://github.com/rust-lang/rust/issues/49147");
2186                     if tcx.sess.opts.unstable_features.is_nightly_build() {
2187                         err.help("add `#![feature(const_in_array_repeat_expressions)]` to the \
2188                                   crate attributes to enable");
2189                     }
2190                 }
2191             }
2192             ObligationCauseCode::VariableType(_) => {
2193                 err.note("all local variables must have a statically known size");
2194                 if !self.tcx.features().unsized_locals {
2195                     err.help("unsized locals are gated as an unstable feature");
2196                 }
2197             }
2198             ObligationCauseCode::SizedArgumentType => {
2199                 err.note("all function arguments must have a statically known size");
2200                 if !self.tcx.features().unsized_locals {
2201                     err.help("unsized locals are gated as an unstable feature");
2202                 }
2203             }
2204             ObligationCauseCode::SizedReturnType => {
2205                 err.note("the return type of a function must have a \
2206                           statically known size");
2207             }
2208             ObligationCauseCode::SizedYieldType => {
2209                 err.note("the yield type of a generator must have a \
2210                           statically known size");
2211             }
2212             ObligationCauseCode::AssignmentLhsSized => {
2213                 err.note("the left-hand-side of an assignment must have a statically known size");
2214             }
2215             ObligationCauseCode::TupleInitializerSized => {
2216                 err.note("tuples must have a statically known size to be initialized");
2217             }
2218             ObligationCauseCode::StructInitializerSized => {
2219                 err.note("structs must have a statically known size to be initialized");
2220             }
2221             ObligationCauseCode::FieldSized { adt_kind: ref item, last } => {
2222                 match *item {
2223                     AdtKind::Struct => {
2224                         if last {
2225                             err.note("the last field of a packed struct may only have a \
2226                                       dynamically sized type if it does not need drop to be run");
2227                         } else {
2228                             err.note("only the last field of a struct may have a dynamically \
2229                                       sized type");
2230                         }
2231                     }
2232                     AdtKind::Union => {
2233                         err.note("no field of a union may have a dynamically sized type");
2234                     }
2235                     AdtKind::Enum => {
2236                         err.note("no field of an enum variant may have a dynamically sized type");
2237                     }
2238                 }
2239             }
2240             ObligationCauseCode::ConstSized => {
2241                 err.note("constant expressions must have a statically known size");
2242             }
2243             ObligationCauseCode::ConstPatternStructural => {
2244                 err.note("constants used for pattern-matching must derive `PartialEq` and `Eq`");
2245             }
2246             ObligationCauseCode::SharedStatic => {
2247                 err.note("shared static variables must have a type that implements `Sync`");
2248             }
2249             ObligationCauseCode::BuiltinDerivedObligation(ref data) => {
2250                 let parent_trait_ref = self.resolve_vars_if_possible(&data.parent_trait_ref);
2251                 let ty = parent_trait_ref.skip_binder().self_ty();
2252                 err.note(&format!("required because it appears within the type `{}`", ty));
2253                 obligated_types.push(ty);
2254
2255                 let parent_predicate = parent_trait_ref.to_predicate();
2256                 if !self.is_recursive_obligation(obligated_types, &data.parent_code) {
2257                     self.note_obligation_cause_code(err,
2258                                                     &parent_predicate,
2259                                                     &data.parent_code,
2260                                                     obligated_types);
2261                 }
2262             }
2263             ObligationCauseCode::ImplDerivedObligation(ref data) => {
2264                 let parent_trait_ref = self.resolve_vars_if_possible(&data.parent_trait_ref);
2265                 err.note(
2266                     &format!("required because of the requirements on the impl of `{}` for `{}`",
2267                              parent_trait_ref,
2268                              parent_trait_ref.skip_binder().self_ty()));
2269                 let parent_predicate = parent_trait_ref.to_predicate();
2270                 self.note_obligation_cause_code(err,
2271                                                 &parent_predicate,
2272                                                 &data.parent_code,
2273                                                 obligated_types);
2274             }
2275             ObligationCauseCode::CompareImplMethodObligation { .. } => {
2276                 err.note(
2277                     &format!("the requirement `{}` appears on the impl method \
2278                               but not on the corresponding trait method",
2279                              predicate));
2280             }
2281             ObligationCauseCode::ReturnType |
2282             ObligationCauseCode::ReturnValue(_) |
2283             ObligationCauseCode::BlockTailExpression(_) => (),
2284             ObligationCauseCode::TrivialBound => {
2285                 err.help("see issue #48214");
2286                 if tcx.sess.opts.unstable_features.is_nightly_build() {
2287                     err.help("add `#![feature(trivial_bounds)]` to the \
2288                               crate attributes to enable",
2289                     );
2290                 }
2291             }
2292             ObligationCauseCode::AssocTypeBound(ref data) => {
2293                 err.span_label(data.original, "associated type defined here");
2294                 if let Some(sp) = data.impl_span {
2295                     err.span_label(sp, "in this `impl` item");
2296                 }
2297                 for sp in &data.bounds {
2298                     err.span_label(*sp, "restricted in this bound");
2299                 }
2300             }
2301         }
2302     }
2303
2304     fn suggest_new_overflow_limit(&self, err: &mut DiagnosticBuilder<'_>) {
2305         let current_limit = self.tcx.sess.recursion_limit.get();
2306         let suggested_limit = current_limit * 2;
2307         err.help(&format!("consider adding a `#![recursion_limit=\"{}\"]` attribute to your crate",
2308                           suggested_limit));
2309     }
2310
2311     fn is_recursive_obligation(&self,
2312                                obligated_types: &mut Vec<&ty::TyS<'tcx>>,
2313                                cause_code: &ObligationCauseCode<'tcx>) -> bool {
2314         if let ObligationCauseCode::BuiltinDerivedObligation(ref data) = cause_code {
2315             let parent_trait_ref = self.resolve_vars_if_possible(&data.parent_trait_ref);
2316
2317             if obligated_types.iter().any(|ot| ot == &parent_trait_ref.skip_binder().self_ty()) {
2318                 return true;
2319             }
2320         }
2321         false
2322     }
2323 }
2324
2325 /// Summarizes information
2326 #[derive(Clone)]
2327 pub enum ArgKind {
2328     /// An argument of non-tuple type. Parameters are (name, ty)
2329     Arg(String, String),
2330
2331     /// An argument of tuple type. For a "found" argument, the span is
2332     /// the locationo in the source of the pattern. For a "expected"
2333     /// argument, it will be None. The vector is a list of (name, ty)
2334     /// strings for the components of the tuple.
2335     Tuple(Option<Span>, Vec<(String, String)>),
2336 }
2337
2338 impl ArgKind {
2339     fn empty() -> ArgKind {
2340         ArgKind::Arg("_".to_owned(), "_".to_owned())
2341     }
2342
2343     /// Creates an `ArgKind` from the expected type of an
2344     /// argument. It has no name (`_`) and an optional source span.
2345     pub fn from_expected_ty(t: Ty<'_>, span: Option<Span>) -> ArgKind {
2346         match t.kind {
2347             ty::Tuple(ref tys) => ArgKind::Tuple(
2348                 span,
2349                 tys.iter()
2350                    .map(|ty| ("_".to_owned(), ty.to_string()))
2351                    .collect::<Vec<_>>()
2352             ),
2353             _ => ArgKind::Arg("_".to_owned(), t.to_string()),
2354         }
2355     }
2356 }