]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/check/wfcheck.rs
Suggest boxing or borrowing unsized fields
[rust.git] / src / librustc_typeck / check / wfcheck.rs
1 use crate::check::{FnCtxt, Inherited};
2 use crate::constrained_generic_params::{identify_constrained_generic_params, Parameter};
3
4 use rustc_ast::ast;
5 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
6 use rustc_errors::{struct_span_err, Applicability, DiagnosticBuilder};
7 use rustc_hir as hir;
8 use rustc_hir::def_id::{DefId, LocalDefId};
9 use rustc_hir::itemlikevisit::ParItemLikeVisitor;
10 use rustc_hir::lang_items;
11 use rustc_hir::ItemKind;
12 use rustc_middle::ty::subst::{GenericArgKind, InternalSubsts, Subst};
13 use rustc_middle::ty::trait_def::TraitSpecializationKind;
14 use rustc_middle::ty::{
15     self, AdtKind, GenericParamDefKind, ToPredicate, Ty, TyCtxt, TypeFoldable, WithConstness,
16 };
17 use rustc_session::parse::feature_err;
18 use rustc_span::symbol::{sym, Symbol};
19 use rustc_span::Span;
20 use rustc_trait_selection::opaque_types::may_define_opaque_type;
21 use rustc_trait_selection::traits::query::evaluate_obligation::InferCtxtExt;
22 use rustc_trait_selection::traits::{self, ObligationCause, ObligationCauseCode};
23
24 /// Helper type of a temporary returned by `.for_item(...)`.
25 /// This is necessary because we can't write the following bound:
26 ///
27 /// ```rust
28 /// F: for<'b, 'tcx> where 'tcx FnOnce(FnCtxt<'b, 'tcx>)
29 /// ```
30 struct CheckWfFcxBuilder<'tcx> {
31     inherited: super::InheritedBuilder<'tcx>,
32     id: hir::HirId,
33     span: Span,
34     param_env: ty::ParamEnv<'tcx>,
35 }
36
37 impl<'tcx> CheckWfFcxBuilder<'tcx> {
38     fn with_fcx<F>(&mut self, f: F)
39     where
40         F: for<'b> FnOnce(&FnCtxt<'b, 'tcx>, TyCtxt<'tcx>) -> Vec<Ty<'tcx>>,
41     {
42         let id = self.id;
43         let span = self.span;
44         let param_env = self.param_env;
45         self.inherited.enter(|inh| {
46             let fcx = FnCtxt::new(&inh, param_env, id);
47             if !inh.tcx.features().trivial_bounds {
48                 // As predicates are cached rather than obligations, this
49                 // needsto be called first so that they are checked with an
50                 // empty `param_env`.
51                 check_false_global_bounds(&fcx, span, id);
52             }
53             let wf_tys = f(&fcx, fcx.tcx);
54             fcx.select_all_obligations_or_error();
55             fcx.regionck_item(id, span, &wf_tys);
56         });
57     }
58 }
59
60 /// Checks that the field types (in a struct def'n) or argument types (in an enum def'n) are
61 /// well-formed, meaning that they do not require any constraints not declared in the struct
62 /// definition itself. For example, this definition would be illegal:
63 ///
64 /// ```rust
65 /// struct Ref<'a, T> { x: &'a T }
66 /// ```
67 ///
68 /// because the type did not declare that `T:'a`.
69 ///
70 /// We do this check as a pre-pass before checking fn bodies because if these constraints are
71 /// not included it frequently leads to confusing errors in fn bodies. So it's better to check
72 /// the types first.
73 pub fn check_item_well_formed(tcx: TyCtxt<'_>, def_id: LocalDefId) {
74     let hir_id = tcx.hir().as_local_hir_id(def_id);
75     let item = tcx.hir().expect_item(hir_id);
76
77     debug!(
78         "check_item_well_formed(it.hir_id={:?}, it.name={})",
79         item.hir_id,
80         tcx.def_path_str(def_id.to_def_id())
81     );
82
83     match item.kind {
84         // Right now we check that every default trait implementation
85         // has an implementation of itself. Basically, a case like:
86         //
87         //     impl Trait for T {}
88         //
89         // has a requirement of `T: Trait` which was required for default
90         // method implementations. Although this could be improved now that
91         // there's a better infrastructure in place for this, it's being left
92         // for a follow-up work.
93         //
94         // Since there's such a requirement, we need to check *just* positive
95         // implementations, otherwise things like:
96         //
97         //     impl !Send for T {}
98         //
99         // won't be allowed unless there's an *explicit* implementation of `Send`
100         // for `T`
101         hir::ItemKind::Impl {
102             defaultness,
103             defaultness_span,
104             polarity,
105             ref of_trait,
106             ref self_ty,
107             ..
108         } => {
109             let is_auto = tcx
110                 .impl_trait_ref(tcx.hir().local_def_id(item.hir_id))
111                 .map_or(false, |trait_ref| tcx.trait_is_auto(trait_ref.def_id));
112             if let (hir::Defaultness::Default { .. }, true) = (defaultness, is_auto) {
113                 let sp = of_trait.as_ref().map(|t| t.path.span).unwrap_or(item.span);
114                 let mut err =
115                     tcx.sess.struct_span_err(sp, "impls of auto traits cannot be default");
116                 err.span_labels(defaultness_span, "default because of this");
117                 err.span_label(sp, "auto trait");
118                 err.emit();
119             }
120             // We match on both `ty::ImplPolarity` and `ast::ImplPolarity` just to get the `!` span.
121             match (tcx.impl_polarity(def_id), polarity) {
122                 (ty::ImplPolarity::Positive, _) => {
123                     check_impl(tcx, item, self_ty, of_trait);
124                 }
125                 (ty::ImplPolarity::Negative, ast::ImplPolarity::Negative(span)) => {
126                     // FIXME(#27579): what amount of WF checking do we need for neg impls?
127                     if let hir::Defaultness::Default { .. } = defaultness {
128                         let mut spans = vec![span];
129                         spans.extend(defaultness_span);
130                         struct_span_err!(
131                             tcx.sess,
132                             spans,
133                             E0750,
134                             "negative impls cannot be default impls"
135                         )
136                         .emit();
137                     }
138                 }
139                 (ty::ImplPolarity::Reservation, _) => {
140                     // FIXME: what amount of WF checking do we need for reservation impls?
141                 }
142                 _ => unreachable!(),
143             }
144         }
145         hir::ItemKind::Fn(..) => {
146             check_item_fn(tcx, item);
147         }
148         hir::ItemKind::Static(ref ty, ..) => {
149             check_item_type(tcx, item.hir_id, ty.span, false);
150         }
151         hir::ItemKind::Const(ref ty, ..) => {
152             check_item_type(tcx, item.hir_id, ty.span, false);
153         }
154         hir::ItemKind::ForeignMod(ref module) => {
155             for it in module.items.iter() {
156                 if let hir::ForeignItemKind::Static(ref ty, ..) = it.kind {
157                     check_item_type(tcx, it.hir_id, ty.span, true);
158                 }
159             }
160         }
161         hir::ItemKind::Struct(ref struct_def, ref ast_generics) => {
162             check_type_defn(tcx, item, false, |fcx| vec![fcx.non_enum_variant(struct_def)]);
163
164             check_variances_for_type_defn(tcx, item, ast_generics);
165         }
166         hir::ItemKind::Union(ref struct_def, ref ast_generics) => {
167             check_type_defn(tcx, item, true, |fcx| vec![fcx.non_enum_variant(struct_def)]);
168
169             check_variances_for_type_defn(tcx, item, ast_generics);
170         }
171         hir::ItemKind::Enum(ref enum_def, ref ast_generics) => {
172             check_type_defn(tcx, item, true, |fcx| fcx.enum_variants(enum_def));
173
174             check_variances_for_type_defn(tcx, item, ast_generics);
175         }
176         hir::ItemKind::Trait(..) => {
177             check_trait(tcx, item);
178         }
179         hir::ItemKind::TraitAlias(..) => {
180             check_trait(tcx, item);
181         }
182         _ => {}
183     }
184 }
185
186 pub fn check_trait_item(tcx: TyCtxt<'_>, def_id: LocalDefId) {
187     let hir_id = tcx.hir().as_local_hir_id(def_id);
188     let trait_item = tcx.hir().expect_trait_item(hir_id);
189
190     let method_sig = match trait_item.kind {
191         hir::TraitItemKind::Fn(ref sig, _) => Some(sig),
192         _ => None,
193     };
194     check_object_unsafe_self_trait_by_name(tcx, &trait_item);
195     check_associated_item(tcx, trait_item.hir_id, trait_item.span, method_sig);
196 }
197
198 fn could_be_self(trait_def_id: LocalDefId, ty: &hir::Ty<'_>) -> bool {
199     match ty.kind {
200         hir::TyKind::TraitObject([trait_ref], ..) => match trait_ref.trait_ref.path.segments {
201             [s] => s.res.and_then(|r| r.opt_def_id()) == Some(trait_def_id.to_def_id()),
202             _ => false,
203         },
204         _ => false,
205     }
206 }
207
208 /// Detect when an object unsafe trait is referring to itself in one of its associated items.
209 /// When this is done, suggest using `Self` instead.
210 fn check_object_unsafe_self_trait_by_name(tcx: TyCtxt<'_>, item: &hir::TraitItem<'_>) {
211     let (trait_name, trait_def_id) = match tcx.hir().get(tcx.hir().get_parent_item(item.hir_id)) {
212         hir::Node::Item(item) => match item.kind {
213             hir::ItemKind::Trait(..) => (item.ident, tcx.hir().local_def_id(item.hir_id)),
214             _ => return,
215         },
216         _ => return,
217     };
218     let mut trait_should_be_self = vec![];
219     match &item.kind {
220         hir::TraitItemKind::Const(ty, _) | hir::TraitItemKind::Type(_, Some(ty))
221             if could_be_self(trait_def_id, ty) =>
222         {
223             trait_should_be_self.push(ty.span)
224         }
225         hir::TraitItemKind::Fn(sig, _) => {
226             for ty in sig.decl.inputs {
227                 if could_be_self(trait_def_id, ty) {
228                     trait_should_be_self.push(ty.span);
229                 }
230             }
231             match sig.decl.output {
232                 hir::FnRetTy::Return(ty) if could_be_self(trait_def_id, ty) => {
233                     trait_should_be_self.push(ty.span);
234                 }
235                 _ => {}
236             }
237         }
238         _ => {}
239     }
240     if !trait_should_be_self.is_empty() {
241         if tcx.object_safety_violations(trait_def_id).is_empty() {
242             return;
243         }
244         let sugg = trait_should_be_self.iter().map(|span| (*span, "Self".to_string())).collect();
245         tcx.sess
246             .struct_span_err(
247                 trait_should_be_self,
248                 "associated item referring to unboxed trait object for its own trait",
249             )
250             .span_label(trait_name.span, "in this trait")
251             .multipart_suggestion(
252                 "you might have meant to use `Self` to refer to the implementing type",
253                 sugg,
254                 Applicability::MachineApplicable,
255             )
256             .emit();
257     }
258 }
259
260 pub fn check_impl_item(tcx: TyCtxt<'_>, def_id: LocalDefId) {
261     let hir_id = tcx.hir().as_local_hir_id(def_id);
262     let impl_item = tcx.hir().expect_impl_item(hir_id);
263
264     let method_sig = match impl_item.kind {
265         hir::ImplItemKind::Fn(ref sig, _) => Some(sig),
266         _ => None,
267     };
268
269     check_associated_item(tcx, impl_item.hir_id, impl_item.span, method_sig);
270 }
271
272 fn check_associated_item(
273     tcx: TyCtxt<'_>,
274     item_id: hir::HirId,
275     span: Span,
276     sig_if_method: Option<&hir::FnSig<'_>>,
277 ) {
278     debug!("check_associated_item: {:?}", item_id);
279
280     let code = ObligationCauseCode::MiscObligation;
281     for_id(tcx, item_id, span).with_fcx(|fcx, tcx| {
282         let item = fcx.tcx.associated_item(fcx.tcx.hir().local_def_id(item_id));
283
284         let (mut implied_bounds, self_ty) = match item.container {
285             ty::TraitContainer(_) => (vec![], fcx.tcx.types.self_param),
286             ty::ImplContainer(def_id) => {
287                 (fcx.impl_implied_bounds(def_id, span), fcx.tcx.type_of(def_id))
288             }
289         };
290
291         match item.kind {
292             ty::AssocKind::Const => {
293                 let ty = fcx.tcx.type_of(item.def_id);
294                 let ty = fcx.normalize_associated_types_in(span, &ty);
295                 fcx.register_wf_obligation(ty.into(), span, code.clone());
296             }
297             ty::AssocKind::Fn => {
298                 let sig = fcx.tcx.fn_sig(item.def_id);
299                 let sig = fcx.normalize_associated_types_in(span, &sig);
300                 let hir_sig = sig_if_method.expect("bad signature for method");
301                 check_fn_or_method(
302                     tcx,
303                     fcx,
304                     item.ident.span,
305                     sig,
306                     hir_sig,
307                     item.def_id,
308                     &mut implied_bounds,
309                 );
310                 check_method_receiver(fcx, hir_sig, &item, self_ty);
311             }
312             ty::AssocKind::Type => {
313                 if item.defaultness.has_value() {
314                     let ty = fcx.tcx.type_of(item.def_id);
315                     let ty = fcx.normalize_associated_types_in(span, &ty);
316                     fcx.register_wf_obligation(ty.into(), span, code.clone());
317                 }
318             }
319         }
320
321         implied_bounds
322     })
323 }
324
325 fn for_item<'tcx>(tcx: TyCtxt<'tcx>, item: &hir::Item<'_>) -> CheckWfFcxBuilder<'tcx> {
326     for_id(tcx, item.hir_id, item.span)
327 }
328
329 fn for_id(tcx: TyCtxt<'_>, id: hir::HirId, span: Span) -> CheckWfFcxBuilder<'_> {
330     let def_id = tcx.hir().local_def_id(id);
331     CheckWfFcxBuilder {
332         inherited: Inherited::build(tcx, def_id),
333         id,
334         span,
335         param_env: tcx.param_env(def_id),
336     }
337 }
338
339 fn item_adt_kind(kind: &ItemKind<'_>) -> Option<AdtKind> {
340     match kind {
341         ItemKind::Struct(..) => Some(AdtKind::Struct),
342         ItemKind::Union(..) => Some(AdtKind::Union),
343         ItemKind::Enum(..) => Some(AdtKind::Enum),
344         _ => None,
345     }
346 }
347
348 /// In a type definition, we check that to ensure that the types of the fields are well-formed.
349 fn check_type_defn<'tcx, F>(
350     tcx: TyCtxt<'tcx>,
351     item: &hir::Item<'tcx>,
352     all_sized: bool,
353     mut lookup_fields: F,
354 ) where
355     F: for<'fcx> FnMut(&FnCtxt<'fcx, 'tcx>) -> Vec<AdtVariant<'tcx>>,
356 {
357     for_item(tcx, item).with_fcx(|fcx, fcx_tcx| {
358         let variants = lookup_fields(fcx);
359         let def_id = fcx.tcx.hir().local_def_id(item.hir_id);
360         let packed = fcx.tcx.adt_def(def_id).repr.packed();
361
362         for variant in &variants {
363             // For DST, or when drop needs to copy things around, all
364             // intermediate types must be sized.
365             let needs_drop_copy = || {
366                 packed && {
367                     let ty = variant.fields.last().unwrap().ty;
368                     let ty = fcx.tcx.erase_regions(&ty);
369                     if ty.needs_infer() {
370                         fcx_tcx
371                             .sess
372                             .delay_span_bug(item.span, &format!("inference variables in {:?}", ty));
373                         // Just treat unresolved type expression as if it needs drop.
374                         true
375                     } else {
376                         ty.needs_drop(fcx_tcx, fcx_tcx.param_env(def_id))
377                     }
378                 }
379             };
380             let all_sized = all_sized || variant.fields.is_empty() || needs_drop_copy();
381             let unsized_len = if all_sized { 0 } else { 1 };
382             for (idx, field) in
383                 variant.fields[..variant.fields.len() - unsized_len].iter().enumerate()
384             {
385                 let last = idx == variant.fields.len() - 1;
386                 fcx.register_bound(
387                     field.ty,
388                     fcx.tcx.require_lang_item(lang_items::SizedTraitLangItem, None),
389                     traits::ObligationCause::new(
390                         field.span,
391                         fcx.body_id,
392                         traits::FieldSized {
393                             adt_kind: match item_adt_kind(&item.kind) {
394                                 Some(i) => i,
395                                 None => bug!(),
396                             },
397                             span: field.span,
398                             last,
399                         },
400                     ),
401                 );
402             }
403
404             // All field types must be well-formed.
405             for field in &variant.fields {
406                 fcx.register_wf_obligation(
407                     field.ty.into(),
408                     field.span,
409                     ObligationCauseCode::MiscObligation,
410                 )
411             }
412
413             // Explicit `enum` discriminant values must const-evaluate successfully.
414             if let Some(discr_def_id) = variant.explicit_discr {
415                 let discr_substs =
416                     InternalSubsts::identity_for_item(fcx.tcx, discr_def_id.to_def_id());
417
418                 let cause = traits::ObligationCause::new(
419                     fcx.tcx.def_span(discr_def_id),
420                     fcx.body_id,
421                     traits::MiscObligation,
422                 );
423                 fcx.register_predicate(traits::Obligation::new(
424                     cause,
425                     fcx.param_env,
426                     ty::PredicateKind::ConstEvaluatable(discr_def_id.to_def_id(), discr_substs)
427                         .to_predicate(fcx.tcx),
428                 ));
429             }
430         }
431
432         check_where_clauses(tcx, fcx, item.span, def_id.to_def_id(), None);
433
434         // No implied bounds in a struct definition.
435         vec![]
436     });
437 }
438
439 fn check_trait(tcx: TyCtxt<'_>, item: &hir::Item<'_>) {
440     debug!("check_trait: {:?}", item.hir_id);
441
442     let trait_def_id = tcx.hir().local_def_id(item.hir_id);
443
444     let trait_def = tcx.trait_def(trait_def_id);
445     if trait_def.is_marker
446         || matches!(trait_def.specialization_kind, TraitSpecializationKind::Marker)
447     {
448         for associated_def_id in &*tcx.associated_item_def_ids(trait_def_id) {
449             struct_span_err!(
450                 tcx.sess,
451                 tcx.def_span(*associated_def_id),
452                 E0714,
453                 "marker traits cannot have associated items",
454             )
455             .emit();
456         }
457     }
458
459     for_item(tcx, item).with_fcx(|fcx, _| {
460         check_where_clauses(tcx, fcx, item.span, trait_def_id.to_def_id(), None);
461         check_associated_type_defaults(fcx, trait_def_id.to_def_id());
462
463         vec![]
464     });
465 }
466
467 /// Checks all associated type defaults of trait `trait_def_id`.
468 ///
469 /// Assuming the defaults are used, check that all predicates (bounds on the
470 /// assoc type and where clauses on the trait) hold.
471 fn check_associated_type_defaults(fcx: &FnCtxt<'_, '_>, trait_def_id: DefId) {
472     let tcx = fcx.tcx;
473     let substs = InternalSubsts::identity_for_item(tcx, trait_def_id);
474
475     // For all assoc. types with defaults, build a map from
476     // `<Self as Trait<...>>::Assoc` to the default type.
477     let map = tcx
478         .associated_items(trait_def_id)
479         .in_definition_order()
480         .filter_map(|item| {
481             if item.kind == ty::AssocKind::Type && item.defaultness.has_value() {
482                 // `<Self as Trait<...>>::Assoc`
483                 let proj = ty::ProjectionTy { substs, item_def_id: item.def_id };
484                 let default_ty = tcx.type_of(item.def_id);
485                 debug!("assoc. type default mapping: {} -> {}", proj, default_ty);
486                 Some((proj, default_ty))
487             } else {
488                 None
489             }
490         })
491         .collect::<FxHashMap<_, _>>();
492
493     /// Replaces projections of associated types with their default types.
494     ///
495     /// This does a "shallow substitution", meaning that defaults that refer to
496     /// other defaulted assoc. types will still refer to the projection
497     /// afterwards, not to the other default. For example:
498     ///
499     /// ```compile_fail
500     /// trait Tr {
501     ///     type A: Clone = Vec<Self::B>;
502     ///     type B = u8;
503     /// }
504     /// ```
505     ///
506     /// This will end up replacing the bound `Self::A: Clone` with
507     /// `Vec<Self::B>: Clone`, not with `Vec<u8>: Clone`. If we did a deep
508     /// substitution and ended up with the latter, the trait would be accepted.
509     /// If an `impl` then replaced `B` with something that isn't `Clone`,
510     /// suddenly the default for `A` is no longer valid. The shallow
511     /// substitution forces the trait to add a `B: Clone` bound to be accepted,
512     /// which means that an `impl` can replace any default without breaking
513     /// others.
514     ///
515     /// Note that this isn't needed for soundness: The defaults would still be
516     /// checked in any impl that doesn't override them.
517     struct DefaultNormalizer<'tcx> {
518         tcx: TyCtxt<'tcx>,
519         map: FxHashMap<ty::ProjectionTy<'tcx>, Ty<'tcx>>,
520     }
521
522     impl<'tcx> ty::fold::TypeFolder<'tcx> for DefaultNormalizer<'tcx> {
523         fn tcx<'a>(&'a self) -> TyCtxt<'tcx> {
524             self.tcx
525         }
526
527         fn fold_ty(&mut self, t: Ty<'tcx>) -> Ty<'tcx> {
528             match t.kind {
529                 ty::Projection(proj_ty) => {
530                     if let Some(default) = self.map.get(&proj_ty) {
531                         default
532                     } else {
533                         t.super_fold_with(self)
534                     }
535                 }
536                 _ => t.super_fold_with(self),
537             }
538         }
539     }
540
541     // Now take all predicates defined on the trait, replace any mention of
542     // the assoc. types with their default, and prove them.
543     // We only consider predicates that directly mention the assoc. type.
544     let mut norm = DefaultNormalizer { tcx, map };
545     let predicates = fcx.tcx.predicates_of(trait_def_id);
546     for &(orig_pred, span) in predicates.predicates.iter() {
547         let pred = orig_pred.fold_with(&mut norm);
548         if pred != orig_pred {
549             // Mentions one of the defaulted assoc. types
550             debug!("default suitability check: proving predicate: {} -> {}", orig_pred, pred);
551             let pred = fcx.normalize_associated_types_in(span, &pred);
552             let cause = traits::ObligationCause::new(
553                 span,
554                 fcx.body_id,
555                 traits::ItemObligation(trait_def_id),
556             );
557             let obligation = traits::Obligation::new(cause, fcx.param_env, pred);
558
559             fcx.register_predicate(obligation);
560         }
561     }
562 }
563
564 fn check_item_fn(tcx: TyCtxt<'_>, item: &hir::Item<'_>) {
565     for_item(tcx, item).with_fcx(|fcx, tcx| {
566         let def_id = fcx.tcx.hir().local_def_id(item.hir_id);
567         let sig = fcx.tcx.fn_sig(def_id);
568         let sig = fcx.normalize_associated_types_in(item.span, &sig);
569         let mut implied_bounds = vec![];
570         let hir_sig = match &item.kind {
571             ItemKind::Fn(sig, ..) => sig,
572             _ => bug!("expected `ItemKind::Fn`, found `{:?}`", item.kind),
573         };
574         check_fn_or_method(
575             tcx,
576             fcx,
577             item.ident.span,
578             sig,
579             hir_sig,
580             def_id.to_def_id(),
581             &mut implied_bounds,
582         );
583         implied_bounds
584     })
585 }
586
587 fn check_item_type(tcx: TyCtxt<'_>, item_id: hir::HirId, ty_span: Span, allow_foreign_ty: bool) {
588     debug!("check_item_type: {:?}", item_id);
589
590     for_id(tcx, item_id, ty_span).with_fcx(|fcx, tcx| {
591         let ty = tcx.type_of(tcx.hir().local_def_id(item_id));
592         let item_ty = fcx.normalize_associated_types_in(ty_span, &ty);
593
594         let mut forbid_unsized = true;
595         if allow_foreign_ty {
596             let tail = fcx.tcx.struct_tail_erasing_lifetimes(item_ty, fcx.param_env);
597             if let ty::Foreign(_) = tail.kind {
598                 forbid_unsized = false;
599             }
600         }
601
602         fcx.register_wf_obligation(item_ty.into(), ty_span, ObligationCauseCode::MiscObligation);
603         if forbid_unsized {
604             fcx.register_bound(
605                 item_ty,
606                 fcx.tcx.require_lang_item(lang_items::SizedTraitLangItem, None),
607                 traits::ObligationCause::new(ty_span, fcx.body_id, traits::MiscObligation),
608             );
609         }
610
611         // No implied bounds in a const, etc.
612         vec![]
613     });
614 }
615
616 fn check_impl<'tcx>(
617     tcx: TyCtxt<'tcx>,
618     item: &'tcx hir::Item<'tcx>,
619     ast_self_ty: &hir::Ty<'_>,
620     ast_trait_ref: &Option<hir::TraitRef<'_>>,
621 ) {
622     debug!("check_impl: {:?}", item);
623
624     for_item(tcx, item).with_fcx(|fcx, tcx| {
625         let item_def_id = fcx.tcx.hir().local_def_id(item.hir_id);
626
627         match *ast_trait_ref {
628             Some(ref ast_trait_ref) => {
629                 // `#[rustc_reservation_impl]` impls are not real impls and
630                 // therefore don't need to be WF (the trait's `Self: Trait` predicate
631                 // won't hold).
632                 let trait_ref = fcx.tcx.impl_trait_ref(item_def_id).unwrap();
633                 let trait_ref =
634                     fcx.normalize_associated_types_in(ast_trait_ref.path.span, &trait_ref);
635                 let obligations = traits::wf::trait_obligations(
636                     fcx,
637                     fcx.param_env,
638                     fcx.body_id,
639                     &trait_ref,
640                     ast_trait_ref.path.span,
641                     Some(item),
642                 );
643                 for obligation in obligations {
644                     fcx.register_predicate(obligation);
645                 }
646             }
647             None => {
648                 let self_ty = fcx.tcx.type_of(item_def_id);
649                 let self_ty = fcx.normalize_associated_types_in(item.span, &self_ty);
650                 fcx.register_wf_obligation(
651                     self_ty.into(),
652                     ast_self_ty.span,
653                     ObligationCauseCode::MiscObligation,
654                 );
655             }
656         }
657
658         check_where_clauses(tcx, fcx, item.span, item_def_id.to_def_id(), None);
659
660         fcx.impl_implied_bounds(item_def_id.to_def_id(), item.span)
661     });
662 }
663
664 /// Checks where-clauses and inline bounds that are declared on `def_id`.
665 fn check_where_clauses<'tcx, 'fcx>(
666     tcx: TyCtxt<'tcx>,
667     fcx: &FnCtxt<'fcx, 'tcx>,
668     span: Span,
669     def_id: DefId,
670     return_ty: Option<(Ty<'tcx>, Span)>,
671 ) {
672     debug!("check_where_clauses(def_id={:?}, return_ty={:?})", def_id, return_ty);
673
674     let predicates = fcx.tcx.predicates_of(def_id);
675     let generics = tcx.generics_of(def_id);
676
677     let is_our_default = |def: &ty::GenericParamDef| match def.kind {
678         GenericParamDefKind::Type { has_default, .. } => {
679             has_default && def.index >= generics.parent_count as u32
680         }
681         _ => unreachable!(),
682     };
683
684     // Check that concrete defaults are well-formed. See test `type-check-defaults.rs`.
685     // For example, this forbids the declaration:
686     //
687     //     struct Foo<T = Vec<[u32]>> { .. }
688     //
689     // Here, the default `Vec<[u32]>` is not WF because `[u32]: Sized` does not hold.
690     for param in &generics.params {
691         if let GenericParamDefKind::Type { .. } = param.kind {
692             if is_our_default(&param) {
693                 let ty = fcx.tcx.type_of(param.def_id);
694                 // Ignore dependent defaults -- that is, where the default of one type
695                 // parameter includes another (e.g., `<T, U = T>`). In those cases, we can't
696                 // be sure if it will error or not as user might always specify the other.
697                 if !ty.needs_subst() {
698                     fcx.register_wf_obligation(
699                         ty.into(),
700                         fcx.tcx.def_span(param.def_id),
701                         ObligationCauseCode::MiscObligation,
702                     );
703                 }
704             }
705         }
706     }
707
708     // Check that trait predicates are WF when params are substituted by their defaults.
709     // We don't want to overly constrain the predicates that may be written but we want to
710     // catch cases where a default my never be applied such as `struct Foo<T: Copy = String>`.
711     // Therefore we check if a predicate which contains a single type param
712     // with a concrete default is WF with that default substituted.
713     // For more examples see tests `defaults-well-formedness.rs` and `type-check-defaults.rs`.
714     //
715     // First we build the defaulted substitution.
716     let substs = InternalSubsts::for_item(fcx.tcx, def_id, |param, _| {
717         match param.kind {
718             GenericParamDefKind::Lifetime => {
719                 // All regions are identity.
720                 fcx.tcx.mk_param_from_def(param)
721             }
722
723             GenericParamDefKind::Type { .. } => {
724                 // If the param has a default, ...
725                 if is_our_default(param) {
726                     let default_ty = fcx.tcx.type_of(param.def_id);
727                     // ... and it's not a dependent default, ...
728                     if !default_ty.needs_subst() {
729                         // ... then substitute it with the default.
730                         return default_ty.into();
731                     }
732                 }
733
734                 fcx.tcx.mk_param_from_def(param)
735             }
736
737             GenericParamDefKind::Const => {
738                 // FIXME(const_generics:defaults)
739                 fcx.tcx.mk_param_from_def(param)
740             }
741         }
742     });
743
744     // Now we build the substituted predicates.
745     let default_obligations = predicates
746         .predicates
747         .iter()
748         .flat_map(|&(pred, sp)| {
749             #[derive(Default)]
750             struct CountParams {
751                 params: FxHashSet<u32>,
752             }
753             impl<'tcx> ty::fold::TypeVisitor<'tcx> for CountParams {
754                 fn visit_ty(&mut self, t: Ty<'tcx>) -> bool {
755                     if let ty::Param(param) = t.kind {
756                         self.params.insert(param.index);
757                     }
758                     t.super_visit_with(self)
759                 }
760
761                 fn visit_region(&mut self, _: ty::Region<'tcx>) -> bool {
762                     true
763                 }
764
765                 fn visit_const(&mut self, c: &'tcx ty::Const<'tcx>) -> bool {
766                     if let ty::ConstKind::Param(param) = c.val {
767                         self.params.insert(param.index);
768                     }
769                     c.super_visit_with(self)
770                 }
771             }
772             let mut param_count = CountParams::default();
773             let has_region = pred.visit_with(&mut param_count);
774             let substituted_pred = pred.subst(fcx.tcx, substs);
775             // Don't check non-defaulted params, dependent defaults (including lifetimes)
776             // or preds with multiple params.
777             if substituted_pred.has_param_types_or_consts()
778                 || param_count.params.len() > 1
779                 || has_region
780             {
781                 None
782             } else if predicates.predicates.iter().any(|&(p, _)| p == substituted_pred) {
783                 // Avoid duplication of predicates that contain no parameters, for example.
784                 None
785             } else {
786                 Some((substituted_pred, sp))
787             }
788         })
789         .map(|(pred, sp)| {
790             // Convert each of those into an obligation. So if you have
791             // something like `struct Foo<T: Copy = String>`, we would
792             // take that predicate `T: Copy`, substitute to `String: Copy`
793             // (actually that happens in the previous `flat_map` call),
794             // and then try to prove it (in this case, we'll fail).
795             //
796             // Note the subtle difference from how we handle `predicates`
797             // below: there, we are not trying to prove those predicates
798             // to be *true* but merely *well-formed*.
799             let pred = fcx.normalize_associated_types_in(sp, &pred);
800             let cause =
801                 traits::ObligationCause::new(sp, fcx.body_id, traits::ItemObligation(def_id));
802             traits::Obligation::new(cause, fcx.param_env, pred)
803         });
804
805     let predicates = predicates.instantiate_identity(fcx.tcx);
806
807     if let Some((mut return_ty, span)) = return_ty {
808         if return_ty.has_infer_types_or_consts() {
809             fcx.select_obligations_where_possible(false, |_| {});
810             return_ty = fcx.resolve_vars_if_possible(&return_ty);
811         }
812         check_opaque_types(tcx, fcx, def_id.expect_local(), span, return_ty);
813     }
814
815     let predicates = fcx.normalize_associated_types_in(span, &predicates);
816
817     debug!("check_where_clauses: predicates={:?}", predicates.predicates);
818     assert_eq!(predicates.predicates.len(), predicates.spans.len());
819     let wf_obligations =
820         predicates.predicates.iter().zip(predicates.spans.iter()).flat_map(|(&p, &sp)| {
821             traits::wf::predicate_obligations(fcx, fcx.param_env, fcx.body_id, p, sp)
822         });
823
824     for obligation in wf_obligations.chain(default_obligations) {
825         debug!("next obligation cause: {:?}", obligation.cause);
826         fcx.register_predicate(obligation);
827     }
828 }
829
830 fn check_fn_or_method<'fcx, 'tcx>(
831     tcx: TyCtxt<'tcx>,
832     fcx: &FnCtxt<'fcx, 'tcx>,
833     span: Span,
834     sig: ty::PolyFnSig<'tcx>,
835     hir_sig: &hir::FnSig<'_>,
836     def_id: DefId,
837     implied_bounds: &mut Vec<Ty<'tcx>>,
838 ) {
839     let sig = fcx.normalize_associated_types_in(span, &sig);
840     let sig = fcx.tcx.liberate_late_bound_regions(def_id, &sig);
841
842     for (&input_ty, span) in sig.inputs().iter().zip(hir_sig.decl.inputs.iter().map(|t| t.span)) {
843         fcx.register_wf_obligation(input_ty.into(), span, ObligationCauseCode::MiscObligation);
844     }
845     implied_bounds.extend(sig.inputs());
846
847     fcx.register_wf_obligation(
848         sig.output().into(),
849         hir_sig.decl.output.span(),
850         ObligationCauseCode::ReturnType,
851     );
852
853     // FIXME(#25759) return types should not be implied bounds
854     implied_bounds.push(sig.output());
855
856     check_where_clauses(tcx, fcx, span, def_id, Some((sig.output(), hir_sig.decl.output.span())));
857 }
858
859 /// Checks "defining uses" of opaque `impl Trait` types to ensure that they meet the restrictions
860 /// laid for "higher-order pattern unification".
861 /// This ensures that inference is tractable.
862 /// In particular, definitions of opaque types can only use other generics as arguments,
863 /// and they cannot repeat an argument. Example:
864 ///
865 /// ```rust
866 /// type Foo<A, B> = impl Bar<A, B>;
867 ///
868 /// // Okay -- `Foo` is applied to two distinct, generic types.
869 /// fn a<T, U>() -> Foo<T, U> { .. }
870 ///
871 /// // Not okay -- `Foo` is applied to `T` twice.
872 /// fn b<T>() -> Foo<T, T> { .. }
873 ///
874 /// // Not okay -- `Foo` is applied to a non-generic type.
875 /// fn b<T>() -> Foo<T, u32> { .. }
876 /// ```
877 ///
878 fn check_opaque_types<'fcx, 'tcx>(
879     tcx: TyCtxt<'tcx>,
880     fcx: &FnCtxt<'fcx, 'tcx>,
881     fn_def_id: LocalDefId,
882     span: Span,
883     ty: Ty<'tcx>,
884 ) {
885     trace!("check_opaque_types(ty={:?})", ty);
886     ty.fold_with(&mut ty::fold::BottomUpFolder {
887         tcx: fcx.tcx,
888         ty_op: |ty| {
889             if let ty::Opaque(def_id, substs) = ty.kind {
890                 trace!("check_opaque_types: opaque_ty, {:?}, {:?}", def_id, substs);
891                 let generics = tcx.generics_of(def_id);
892
893                 let opaque_hir_id = if let Some(local_id) = def_id.as_local() {
894                     tcx.hir().as_local_hir_id(local_id)
895                 } else {
896                     // Opaque types from other crates won't have defining uses in this crate.
897                     return ty;
898                 };
899                 if let hir::ItemKind::OpaqueTy(hir::OpaqueTy { impl_trait_fn: Some(_), .. }) =
900                     tcx.hir().expect_item(opaque_hir_id).kind
901                 {
902                     // No need to check return position impl trait (RPIT)
903                     // because for type and const parameters they are correct
904                     // by construction: we convert
905                     //
906                     // fn foo<P0..Pn>() -> impl Trait
907                     //
908                     // into
909                     //
910                     // type Foo<P0...Pn>
911                     // fn foo<P0..Pn>() -> Foo<P0...Pn>.
912                     //
913                     // For lifetime parameters we convert
914                     //
915                     // fn foo<'l0..'ln>() -> impl Trait<'l0..'lm>
916                     //
917                     // into
918                     //
919                     // type foo::<'p0..'pn>::Foo<'q0..'qm>
920                     // fn foo<l0..'ln>() -> foo::<'static..'static>::Foo<'l0..'lm>.
921                     //
922                     // which would error here on all of the `'static` args.
923                     return ty;
924                 }
925                 if !may_define_opaque_type(tcx, fn_def_id, opaque_hir_id) {
926                     return ty;
927                 }
928                 trace!("check_opaque_types: may define, generics={:#?}", generics);
929                 let mut seen_params: FxHashMap<_, Vec<_>> = FxHashMap::default();
930                 for (i, arg) in substs.iter().enumerate() {
931                     let arg_is_param = match arg.unpack() {
932                         GenericArgKind::Type(ty) => matches!(ty.kind, ty::Param(_)),
933
934                         GenericArgKind::Lifetime(region) => {
935                             if let ty::ReStatic = region {
936                                 tcx.sess
937                                     .struct_span_err(
938                                         span,
939                                         "non-defining opaque type use in defining scope",
940                                     )
941                                     .span_label(
942                                         tcx.def_span(generics.param_at(i, tcx).def_id),
943                                         "cannot use static lifetime; use a bound lifetime \
944                                                  instead or remove the lifetime parameter from the \
945                                                  opaque type",
946                                     )
947                                     .emit();
948                                 continue;
949                             }
950
951                             true
952                         }
953
954                         GenericArgKind::Const(ct) => matches!(ct.val, ty::ConstKind::Param(_)),
955                     };
956
957                     if arg_is_param {
958                         seen_params.entry(arg).or_default().push(i);
959                     } else {
960                         // Prevent `fn foo() -> Foo<u32>` from being defining.
961                         let opaque_param = generics.param_at(i, tcx);
962                         tcx.sess
963                             .struct_span_err(span, "non-defining opaque type use in defining scope")
964                             .span_note(
965                                 tcx.def_span(opaque_param.def_id),
966                                 &format!(
967                                     "used non-generic {} `{}` for generic parameter",
968                                     opaque_param.kind.descr(),
969                                     arg,
970                                 ),
971                             )
972                             .emit();
973                     }
974                 } // for (arg, param)
975
976                 for (_, indices) in seen_params {
977                     if indices.len() > 1 {
978                         let descr = generics.param_at(indices[0], tcx).kind.descr();
979                         let spans: Vec<_> = indices
980                             .into_iter()
981                             .map(|i| tcx.def_span(generics.param_at(i, tcx).def_id))
982                             .collect();
983                         tcx.sess
984                             .struct_span_err(span, "non-defining opaque type use in defining scope")
985                             .span_note(spans, &format!("{} used multiple times", descr))
986                             .emit();
987                     }
988                 }
989             } // if let Opaque
990             ty
991         },
992         lt_op: |lt| lt,
993         ct_op: |ct| ct,
994     });
995 }
996
997 const HELP_FOR_SELF_TYPE: &str = "consider changing to `self`, `&self`, `&mut self`, `self: Box<Self>`, \
998      `self: Rc<Self>`, `self: Arc<Self>`, or `self: Pin<P>` (where P is one \
999      of the previous types except `Self`)";
1000
1001 fn check_method_receiver<'fcx, 'tcx>(
1002     fcx: &FnCtxt<'fcx, 'tcx>,
1003     fn_sig: &hir::FnSig<'_>,
1004     method: &ty::AssocItem,
1005     self_ty: Ty<'tcx>,
1006 ) {
1007     // Check that the method has a valid receiver type, given the type `Self`.
1008     debug!("check_method_receiver({:?}, self_ty={:?})", method, self_ty);
1009
1010     if !method.fn_has_self_parameter {
1011         return;
1012     }
1013
1014     let span = fn_sig.decl.inputs[0].span;
1015
1016     let sig = fcx.tcx.fn_sig(method.def_id);
1017     let sig = fcx.normalize_associated_types_in(span, &sig);
1018     let sig = fcx.tcx.liberate_late_bound_regions(method.def_id, &sig);
1019
1020     debug!("check_method_receiver: sig={:?}", sig);
1021
1022     let self_ty = fcx.normalize_associated_types_in(span, &self_ty);
1023     let self_ty = fcx.tcx.liberate_late_bound_regions(method.def_id, &ty::Binder::bind(self_ty));
1024
1025     let receiver_ty = sig.inputs()[0];
1026
1027     let receiver_ty = fcx.normalize_associated_types_in(span, &receiver_ty);
1028     let receiver_ty =
1029         fcx.tcx.liberate_late_bound_regions(method.def_id, &ty::Binder::bind(receiver_ty));
1030
1031     if fcx.tcx.features().arbitrary_self_types {
1032         if !receiver_is_valid(fcx, span, receiver_ty, self_ty, true) {
1033             // Report error; `arbitrary_self_types` was enabled.
1034             e0307(fcx, span, receiver_ty);
1035         }
1036     } else {
1037         if !receiver_is_valid(fcx, span, receiver_ty, self_ty, false) {
1038             if receiver_is_valid(fcx, span, receiver_ty, self_ty, true) {
1039                 // Report error; would have worked with `arbitrary_self_types`.
1040                 feature_err(
1041                     &fcx.tcx.sess.parse_sess,
1042                     sym::arbitrary_self_types,
1043                     span,
1044                     &format!(
1045                         "`{}` cannot be used as the type of `self` without \
1046                          the `arbitrary_self_types` feature",
1047                         receiver_ty,
1048                     ),
1049                 )
1050                 .help(HELP_FOR_SELF_TYPE)
1051                 .emit();
1052             } else {
1053                 // Report error; would not have worked with `arbitrary_self_types`.
1054                 e0307(fcx, span, receiver_ty);
1055             }
1056         }
1057     }
1058 }
1059
1060 fn e0307(fcx: &FnCtxt<'fcx, 'tcx>, span: Span, receiver_ty: Ty<'_>) {
1061     struct_span_err!(
1062         fcx.tcx.sess.diagnostic(),
1063         span,
1064         E0307,
1065         "invalid `self` parameter type: {:?}",
1066         receiver_ty,
1067     )
1068     .note("type of `self` must be `Self` or a type that dereferences to it")
1069     .help(HELP_FOR_SELF_TYPE)
1070     .emit();
1071 }
1072
1073 /// Returns whether `receiver_ty` would be considered a valid receiver type for `self_ty`. If
1074 /// `arbitrary_self_types` is enabled, `receiver_ty` must transitively deref to `self_ty`, possibly
1075 /// through a `*const/mut T` raw pointer. If the feature is not enabled, the requirements are more
1076 /// strict: `receiver_ty` must implement `Receiver` and directly implement
1077 /// `Deref<Target = self_ty>`.
1078 ///
1079 /// N.B., there are cases this function returns `true` but causes an error to be emitted,
1080 /// particularly when `receiver_ty` derefs to a type that is the same as `self_ty` but has the
1081 /// wrong lifetime. Be careful of this if you are calling this function speculatively.
1082 fn receiver_is_valid<'fcx, 'tcx>(
1083     fcx: &FnCtxt<'fcx, 'tcx>,
1084     span: Span,
1085     receiver_ty: Ty<'tcx>,
1086     self_ty: Ty<'tcx>,
1087     arbitrary_self_types_enabled: bool,
1088 ) -> bool {
1089     let cause = fcx.cause(span, traits::ObligationCauseCode::MethodReceiver);
1090
1091     let can_eq_self = |ty| fcx.infcx.can_eq(fcx.param_env, self_ty, ty).is_ok();
1092
1093     // `self: Self` is always valid.
1094     if can_eq_self(receiver_ty) {
1095         if let Some(mut err) = fcx.demand_eqtype_with_origin(&cause, self_ty, receiver_ty) {
1096             err.emit();
1097         }
1098         return true;
1099     }
1100
1101     let mut autoderef = fcx.autoderef(span, receiver_ty);
1102
1103     // The `arbitrary_self_types` feature allows raw pointer receivers like `self: *const Self`.
1104     if arbitrary_self_types_enabled {
1105         autoderef = autoderef.include_raw_pointers();
1106     }
1107
1108     // The first type is `receiver_ty`, which we know its not equal to `self_ty`; skip it.
1109     autoderef.next();
1110
1111     let receiver_trait_def_id = fcx.tcx.require_lang_item(lang_items::ReceiverTraitLangItem, None);
1112
1113     // Keep dereferencing `receiver_ty` until we get to `self_ty`.
1114     loop {
1115         if let Some((potential_self_ty, _)) = autoderef.next() {
1116             debug!(
1117                 "receiver_is_valid: potential self type `{:?}` to match `{:?}`",
1118                 potential_self_ty, self_ty
1119             );
1120
1121             if can_eq_self(potential_self_ty) {
1122                 fcx.register_predicates(autoderef.into_obligations());
1123
1124                 if let Some(mut err) =
1125                     fcx.demand_eqtype_with_origin(&cause, self_ty, potential_self_ty)
1126                 {
1127                     err.emit();
1128                 }
1129
1130                 break;
1131             } else {
1132                 // Without `feature(arbitrary_self_types)`, we require that each step in the
1133                 // deref chain implement `receiver`
1134                 if !arbitrary_self_types_enabled
1135                     && !receiver_is_implemented(
1136                         fcx,
1137                         receiver_trait_def_id,
1138                         cause.clone(),
1139                         potential_self_ty,
1140                     )
1141                 {
1142                     return false;
1143                 }
1144             }
1145         } else {
1146             debug!("receiver_is_valid: type `{:?}` does not deref to `{:?}`", receiver_ty, self_ty);
1147             // If he receiver already has errors reported due to it, consider it valid to avoid
1148             // unnecessary errors (#58712).
1149             return receiver_ty.references_error();
1150         }
1151     }
1152
1153     // Without `feature(arbitrary_self_types)`, we require that `receiver_ty` implements `Receiver`.
1154     if !arbitrary_self_types_enabled
1155         && !receiver_is_implemented(fcx, receiver_trait_def_id, cause.clone(), receiver_ty)
1156     {
1157         return false;
1158     }
1159
1160     true
1161 }
1162
1163 fn receiver_is_implemented(
1164     fcx: &FnCtxt<'_, 'tcx>,
1165     receiver_trait_def_id: DefId,
1166     cause: ObligationCause<'tcx>,
1167     receiver_ty: Ty<'tcx>,
1168 ) -> bool {
1169     let trait_ref = ty::TraitRef {
1170         def_id: receiver_trait_def_id,
1171         substs: fcx.tcx.mk_substs_trait(receiver_ty, &[]),
1172     };
1173
1174     let obligation = traits::Obligation::new(
1175         cause,
1176         fcx.param_env,
1177         trait_ref.without_const().to_predicate(fcx.tcx),
1178     );
1179
1180     if fcx.predicate_must_hold_modulo_regions(&obligation) {
1181         true
1182     } else {
1183         debug!(
1184             "receiver_is_implemented: type `{:?}` does not implement `Receiver` trait",
1185             receiver_ty
1186         );
1187         false
1188     }
1189 }
1190
1191 fn check_variances_for_type_defn<'tcx>(
1192     tcx: TyCtxt<'tcx>,
1193     item: &hir::Item<'tcx>,
1194     hir_generics: &hir::Generics<'_>,
1195 ) {
1196     let item_def_id = tcx.hir().local_def_id(item.hir_id);
1197     let ty = tcx.type_of(item_def_id);
1198     if tcx.has_error_field(ty) {
1199         return;
1200     }
1201
1202     let ty_predicates = tcx.predicates_of(item_def_id);
1203     assert_eq!(ty_predicates.parent, None);
1204     let variances = tcx.variances_of(item_def_id);
1205
1206     let mut constrained_parameters: FxHashSet<_> = variances
1207         .iter()
1208         .enumerate()
1209         .filter(|&(_, &variance)| variance != ty::Bivariant)
1210         .map(|(index, _)| Parameter(index as u32))
1211         .collect();
1212
1213     identify_constrained_generic_params(tcx, ty_predicates, None, &mut constrained_parameters);
1214
1215     for (index, _) in variances.iter().enumerate() {
1216         if constrained_parameters.contains(&Parameter(index as u32)) {
1217             continue;
1218         }
1219
1220         let param = &hir_generics.params[index];
1221
1222         match param.name {
1223             hir::ParamName::Error => {}
1224             _ => report_bivariance(tcx, param.span, param.name.ident().name),
1225         }
1226     }
1227 }
1228
1229 fn report_bivariance(tcx: TyCtxt<'_>, span: Span, param_name: Symbol) {
1230     let mut err = error_392(tcx, span, param_name);
1231
1232     let suggested_marker_id = tcx.lang_items().phantom_data();
1233     // Help is available only in presence of lang items.
1234     let msg = if let Some(def_id) = suggested_marker_id {
1235         format!(
1236             "consider removing `{}`, referring to it in a field, or using a marker such as `{}`",
1237             param_name,
1238             tcx.def_path_str(def_id),
1239         )
1240     } else {
1241         format!("consider removing `{}` or referring to it in a field", param_name)
1242     };
1243     err.help(&msg);
1244     err.emit();
1245 }
1246
1247 /// Feature gates RFC 2056 -- trivial bounds, checking for global bounds that
1248 /// aren't true.
1249 fn check_false_global_bounds(fcx: &FnCtxt<'_, '_>, span: Span, id: hir::HirId) {
1250     let empty_env = ty::ParamEnv::empty();
1251
1252     let def_id = fcx.tcx.hir().local_def_id(id);
1253     let predicates = fcx.tcx.predicates_of(def_id).predicates.iter().map(|(p, _)| *p);
1254     // Check elaborated bounds.
1255     let implied_obligations = traits::elaborate_predicates(fcx.tcx, predicates);
1256
1257     for obligation in implied_obligations {
1258         let pred = obligation.predicate;
1259         // Match the existing behavior.
1260         if pred.is_global() && !pred.has_late_bound_regions() {
1261             let pred = fcx.normalize_associated_types_in(span, &pred);
1262             let obligation = traits::Obligation::new(
1263                 traits::ObligationCause::new(span, id, traits::TrivialBound),
1264                 empty_env,
1265                 pred,
1266             );
1267             fcx.register_predicate(obligation);
1268         }
1269     }
1270
1271     fcx.select_all_obligations_or_error();
1272 }
1273
1274 pub struct CheckTypeWellFormedVisitor<'tcx> {
1275     tcx: TyCtxt<'tcx>,
1276 }
1277
1278 impl CheckTypeWellFormedVisitor<'tcx> {
1279     pub fn new(tcx: TyCtxt<'tcx>) -> CheckTypeWellFormedVisitor<'tcx> {
1280         CheckTypeWellFormedVisitor { tcx }
1281     }
1282 }
1283
1284 impl ParItemLikeVisitor<'tcx> for CheckTypeWellFormedVisitor<'tcx> {
1285     fn visit_item(&self, i: &'tcx hir::Item<'tcx>) {
1286         debug!("visit_item: {:?}", i);
1287         let def_id = self.tcx.hir().local_def_id(i.hir_id);
1288         self.tcx.ensure().check_item_well_formed(def_id);
1289     }
1290
1291     fn visit_trait_item(&self, trait_item: &'tcx hir::TraitItem<'tcx>) {
1292         debug!("visit_trait_item: {:?}", trait_item);
1293         let def_id = self.tcx.hir().local_def_id(trait_item.hir_id);
1294         self.tcx.ensure().check_trait_item_well_formed(def_id);
1295     }
1296
1297     fn visit_impl_item(&self, impl_item: &'tcx hir::ImplItem<'tcx>) {
1298         debug!("visit_impl_item: {:?}", impl_item);
1299         let def_id = self.tcx.hir().local_def_id(impl_item.hir_id);
1300         self.tcx.ensure().check_impl_item_well_formed(def_id);
1301     }
1302 }
1303
1304 ///////////////////////////////////////////////////////////////////////////
1305 // ADT
1306
1307 // FIXME(eddyb) replace this with getting fields/discriminants through `ty::AdtDef`.
1308 struct AdtVariant<'tcx> {
1309     /// Types of fields in the variant, that must be well-formed.
1310     fields: Vec<AdtField<'tcx>>,
1311
1312     /// Explicit discriminant of this variant (e.g. `A = 123`),
1313     /// that must evaluate to a constant value.
1314     explicit_discr: Option<LocalDefId>,
1315 }
1316
1317 struct AdtField<'tcx> {
1318     ty: Ty<'tcx>,
1319     span: Span,
1320 }
1321
1322 impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1323     // FIXME(eddyb) replace this with getting fields through `ty::AdtDef`.
1324     fn non_enum_variant(&self, struct_def: &hir::VariantData<'_>) -> AdtVariant<'tcx> {
1325         let fields = struct_def
1326             .fields()
1327             .iter()
1328             .map(|field| {
1329                 let field_ty = self.tcx.type_of(self.tcx.hir().local_def_id(field.hir_id));
1330                 let field_ty = self.normalize_associated_types_in(field.ty.span, &field_ty);
1331                 let field_ty = self.resolve_vars_if_possible(&field_ty);
1332                 debug!("non_enum_variant: type of field {:?} is {:?}", field, field_ty);
1333                 AdtField { ty: field_ty, span: field.ty.span }
1334             })
1335             .collect();
1336         AdtVariant { fields, explicit_discr: None }
1337     }
1338
1339     fn enum_variants(&self, enum_def: &hir::EnumDef<'_>) -> Vec<AdtVariant<'tcx>> {
1340         enum_def
1341             .variants
1342             .iter()
1343             .map(|variant| AdtVariant {
1344                 fields: self.non_enum_variant(&variant.data).fields,
1345                 explicit_discr: variant
1346                     .disr_expr
1347                     .map(|explicit_discr| self.tcx.hir().local_def_id(explicit_discr.hir_id)),
1348             })
1349             .collect()
1350     }
1351
1352     fn impl_implied_bounds(&self, impl_def_id: DefId, span: Span) -> Vec<Ty<'tcx>> {
1353         match self.tcx.impl_trait_ref(impl_def_id) {
1354             Some(ref trait_ref) => {
1355                 // Trait impl: take implied bounds from all types that
1356                 // appear in the trait reference.
1357                 let trait_ref = self.normalize_associated_types_in(span, trait_ref);
1358                 trait_ref.substs.types().collect()
1359             }
1360
1361             None => {
1362                 // Inherent impl: take implied bounds from the `self` type.
1363                 let self_ty = self.tcx.type_of(impl_def_id);
1364                 let self_ty = self.normalize_associated_types_in(span, &self_ty);
1365                 vec![self_ty]
1366             }
1367         }
1368     }
1369 }
1370
1371 fn error_392(tcx: TyCtxt<'_>, span: Span, param_name: Symbol) -> DiagnosticBuilder<'_> {
1372     let mut err =
1373         struct_span_err!(tcx.sess, span, E0392, "parameter `{}` is never used", param_name);
1374     err.span_label(span, "unused parameter");
1375     err
1376 }