]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/check/pat.rs
Rollup merge of #67727 - Dylan-DPC:stabilise/remove_item, r=alexcrichton
[rust.git] / src / librustc_typeck / check / pat.rs
1 use crate::check::FnCtxt;
2 use errors::{pluralize, Applicability, DiagnosticBuilder};
3 use rustc::infer;
4 use rustc::infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
5 use rustc::traits::Pattern;
6 use rustc::ty::subst::GenericArg;
7 use rustc::ty::{self, BindingMode, Ty, TypeFoldable};
8 use rustc_data_structures::fx::FxHashMap;
9 use rustc_hir as hir;
10 use rustc_hir::def::{CtorKind, DefKind, Res};
11 use rustc_hir::pat_util::EnumerateAndAdjustIterator;
12 use rustc_hir::{HirId, Pat, PatKind};
13 use rustc_span::hygiene::DesugaringKind;
14 use rustc_span::Span;
15 use syntax::ast;
16 use syntax::util::lev_distance::find_best_match_for_name;
17
18 use rustc_error_codes::*;
19
20 use std::cmp;
21 use std::collections::hash_map::Entry::{Occupied, Vacant};
22
23 use super::report_unexpected_variant_res;
24
25 const CANNOT_IMPLICITLY_DEREF_POINTER_TRAIT_OBJ: &str = "\
26 This error indicates that a pointer to a trait type cannot be implicitly dereferenced by a \
27 pattern. Every trait defines a type, but because the size of trait implementors isn't fixed, \
28 this type has no compile-time size. Therefore, all accesses to trait types must be through \
29 pointers. If you encounter this error you should try to avoid dereferencing the pointer.
30
31 You can read more about trait objects in the Trait Objects section of the Reference: \
32 https://doc.rust-lang.org/reference/types.html#trait-objects";
33
34 /// Information about the expected type at the top level of type checking a pattern.
35 ///
36 /// **NOTE:** This is only for use by diagnostics. Do NOT use for type checking logic!
37 #[derive(Copy, Clone)]
38 struct TopInfo<'tcx> {
39     /// The `expected` type at the top level of type checking a pattern.
40     expected: Ty<'tcx>,
41     /// Was the origin of the `span` from a scrutinee expression?
42     ///
43     /// Otherwise there is no scrutinee and it could be e.g. from the type of a formal parameter.
44     origin_expr: bool,
45     /// The span giving rise to the `expected` type, if one could be provided.
46     ///
47     /// If `origin_expr` is `true`, then this is the span of the scrutinee as in:
48     ///
49     /// - `match scrutinee { ... }`
50     /// - `let _ = scrutinee;`
51     ///
52     /// This is used to point to add context in type errors.
53     /// In the following example, `span` corresponds to the `a + b` expression:
54     ///
55     /// ```text
56     /// error[E0308]: mismatched types
57     ///  --> src/main.rs:L:C
58     ///   |
59     /// L |    let temp: usize = match a + b {
60     ///   |                            ----- this expression has type `usize`
61     /// L |         Ok(num) => num,
62     ///   |         ^^^^^^^ expected `usize`, found enum `std::result::Result`
63     ///   |
64     ///   = note: expected type `usize`
65     ///              found type `std::result::Result<_, _>`
66     /// ```
67     span: Option<Span>,
68 }
69
70 impl<'tcx> FnCtxt<'_, 'tcx> {
71     fn demand_eqtype_pat_diag(
72         &self,
73         cause_span: Span,
74         expected: Ty<'tcx>,
75         actual: Ty<'tcx>,
76         ti: TopInfo<'tcx>,
77     ) -> Option<DiagnosticBuilder<'tcx>> {
78         let code = Pattern { span: ti.span, root_ty: ti.expected, origin_expr: ti.origin_expr };
79         let cause = self.cause(cause_span, code);
80         self.demand_eqtype_with_origin(&cause, expected, actual)
81     }
82
83     fn demand_eqtype_pat(
84         &self,
85         cause_span: Span,
86         expected: Ty<'tcx>,
87         actual: Ty<'tcx>,
88         ti: TopInfo<'tcx>,
89     ) {
90         self.demand_eqtype_pat_diag(cause_span, expected, actual, ti).map(|mut err| err.emit());
91     }
92 }
93
94 impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
95     /// Type check the given top level pattern against the `expected` type.
96     ///
97     /// If a `Some(span)` is provided and `origin_expr` holds,
98     /// then the `span` represents the scrutinee's span.
99     /// The scrutinee is found in e.g. `match scrutinee { ... }` and `let pat = scrutinee;`.
100     ///
101     /// Otherwise, `Some(span)` represents the span of a type expression
102     /// which originated the `expected` type.
103     pub fn check_pat_top(
104         &self,
105         pat: &'tcx Pat<'tcx>,
106         expected: Ty<'tcx>,
107         span: Option<Span>,
108         origin_expr: bool,
109     ) {
110         let def_bm = BindingMode::BindByValue(hir::Mutability::Not);
111         self.check_pat(pat, expected, def_bm, TopInfo { expected, origin_expr, span });
112     }
113
114     /// Type check the given `pat` against the `expected` type
115     /// with the provided `def_bm` (default binding mode).
116     ///
117     /// Outside of this module, `check_pat_top` should always be used.
118     /// Conversely, inside this module, `check_pat_top` should never be used.
119     fn check_pat(
120         &self,
121         pat: &'tcx Pat<'tcx>,
122         expected: Ty<'tcx>,
123         def_bm: BindingMode,
124         ti: TopInfo<'tcx>,
125     ) {
126         debug!("check_pat(pat={:?},expected={:?},def_bm={:?})", pat, expected, def_bm);
127
128         let path_resolution = match &pat.kind {
129             PatKind::Path(qpath) => Some(self.resolve_ty_and_res_ufcs(qpath, pat.hir_id, pat.span)),
130             _ => None,
131         };
132         let is_nrp = self.is_non_ref_pat(pat, path_resolution.map(|(res, ..)| res));
133         let (expected, def_bm) = self.calc_default_binding_mode(pat, expected, def_bm, is_nrp);
134
135         let ty = match pat.kind {
136             PatKind::Wild => expected,
137             PatKind::Lit(lt) => self.check_pat_lit(pat.span, lt, expected, ti),
138             PatKind::Range(begin, end, _) => {
139                 match self.check_pat_range(pat.span, begin, end, expected, ti) {
140                     None => return,
141                     Some(ty) => ty,
142                 }
143             }
144             PatKind::Binding(ba, var_id, _, sub) => {
145                 self.check_pat_ident(pat, ba, var_id, sub, expected, def_bm, ti)
146             }
147             PatKind::TupleStruct(ref qpath, subpats, ddpos) => {
148                 self.check_pat_tuple_struct(pat, qpath, subpats, ddpos, expected, def_bm, ti)
149             }
150             PatKind::Path(ref qpath) => {
151                 self.check_pat_path(pat, path_resolution.unwrap(), qpath, expected)
152             }
153             PatKind::Struct(ref qpath, fields, etc) => {
154                 self.check_pat_struct(pat, qpath, fields, etc, expected, def_bm, ti)
155             }
156             PatKind::Or(pats) => {
157                 for pat in pats {
158                     self.check_pat(pat, expected, def_bm, ti);
159                 }
160                 expected
161             }
162             PatKind::Tuple(elements, ddpos) => {
163                 self.check_pat_tuple(pat.span, elements, ddpos, expected, def_bm, ti)
164             }
165             PatKind::Box(inner) => self.check_pat_box(pat.span, inner, expected, def_bm, ti),
166             PatKind::Ref(inner, mutbl) => {
167                 self.check_pat_ref(pat, inner, mutbl, expected, def_bm, ti)
168             }
169             PatKind::Slice(before, slice, after) => {
170                 self.check_pat_slice(pat.span, before, slice, after, expected, def_bm, ti)
171             }
172         };
173
174         self.write_ty(pat.hir_id, ty);
175
176         // (note_1): In most of the cases where (note_1) is referenced
177         // (literals and constants being the exception), we relate types
178         // using strict equality, even though subtyping would be sufficient.
179         // There are a few reasons for this, some of which are fairly subtle
180         // and which cost me (nmatsakis) an hour or two debugging to remember,
181         // so I thought I'd write them down this time.
182         //
183         // 1. There is no loss of expressiveness here, though it does
184         // cause some inconvenience. What we are saying is that the type
185         // of `x` becomes *exactly* what is expected. This can cause unnecessary
186         // errors in some cases, such as this one:
187         //
188         // ```
189         // fn foo<'x>(x: &'x int) {
190         //    let a = 1;
191         //    let mut z = x;
192         //    z = &a;
193         // }
194         // ```
195         //
196         // The reason we might get an error is that `z` might be
197         // assigned a type like `&'x int`, and then we would have
198         // a problem when we try to assign `&a` to `z`, because
199         // the lifetime of `&a` (i.e., the enclosing block) is
200         // shorter than `'x`.
201         //
202         // HOWEVER, this code works fine. The reason is that the
203         // expected type here is whatever type the user wrote, not
204         // the initializer's type. In this case the user wrote
205         // nothing, so we are going to create a type variable `Z`.
206         // Then we will assign the type of the initializer (`&'x
207         // int`) as a subtype of `Z`: `&'x int <: Z`. And hence we
208         // will instantiate `Z` as a type `&'0 int` where `'0` is
209         // a fresh region variable, with the constraint that `'x :
210         // '0`.  So basically we're all set.
211         //
212         // Note that there are two tests to check that this remains true
213         // (`regions-reassign-{match,let}-bound-pointer.rs`).
214         //
215         // 2. Things go horribly wrong if we use subtype. The reason for
216         // THIS is a fairly subtle case involving bound regions. See the
217         // `givens` field in `region_constraints`, as well as the test
218         // `regions-relate-bound-regions-on-closures-to-inference-variables.rs`,
219         // for details. Short version is that we must sometimes detect
220         // relationships between specific region variables and regions
221         // bound in a closure signature, and that detection gets thrown
222         // off when we substitute fresh region variables here to enable
223         // subtyping.
224     }
225
226     /// Compute the new expected type and default binding mode from the old ones
227     /// as well as the pattern form we are currently checking.
228     fn calc_default_binding_mode(
229         &self,
230         pat: &'tcx Pat<'tcx>,
231         expected: Ty<'tcx>,
232         def_bm: BindingMode,
233         is_non_ref_pat: bool,
234     ) -> (Ty<'tcx>, BindingMode) {
235         if is_non_ref_pat {
236             debug!("pattern is non reference pattern");
237             self.peel_off_references(pat, expected, def_bm)
238         } else {
239             // When you encounter a `&pat` pattern, reset to "by
240             // value". This is so that `x` and `y` here are by value,
241             // as they appear to be:
242             //
243             // ```
244             // match &(&22, &44) {
245             //   (&x, &y) => ...
246             // }
247             // ```
248             //
249             // See issue #46688.
250             let def_bm = match pat.kind {
251                 PatKind::Ref(..) => ty::BindByValue(hir::Mutability::Not),
252                 _ => def_bm,
253             };
254             (expected, def_bm)
255         }
256     }
257
258     /// Is the pattern a "non reference pattern"?
259     /// When the pattern is a path pattern, `opt_path_res` must be `Some(res)`.
260     fn is_non_ref_pat(&self, pat: &'tcx Pat<'tcx>, opt_path_res: Option<Res>) -> bool {
261         match pat.kind {
262             PatKind::Struct(..)
263             | PatKind::TupleStruct(..)
264             | PatKind::Tuple(..)
265             | PatKind::Box(_)
266             | PatKind::Range(..)
267             | PatKind::Slice(..) => true,
268             PatKind::Lit(ref lt) => {
269                 let ty = self.check_expr(lt);
270                 match ty.kind {
271                     ty::Ref(..) => false,
272                     _ => true,
273                 }
274             }
275             PatKind::Path(_) => match opt_path_res.unwrap() {
276                 Res::Def(DefKind::Const, _) | Res::Def(DefKind::AssocConst, _) => false,
277                 _ => true,
278             },
279             // FIXME(or_patterns; Centril | dlrobertson): To keep things compiling
280             // for or-patterns at the top level, we need to make `p_0 | ... | p_n`
281             // a "non reference pattern". For example the following currently compiles:
282             // ```
283             // match &1 {
284             //     e @ &(1...2) | e @ &(3...4) => {}
285             //     _ => {}
286             // }
287             // ```
288             //
289             // We should consider whether we should do something special in nested or-patterns.
290             PatKind::Or(_) | PatKind::Wild | PatKind::Binding(..) | PatKind::Ref(..) => false,
291         }
292     }
293
294     /// Peel off as many immediately nested `& mut?` from the expected type as possible
295     /// and return the new expected type and binding default binding mode.
296     /// The adjustments vector, if non-empty is stored in a table.
297     fn peel_off_references(
298         &self,
299         pat: &'tcx Pat<'tcx>,
300         expected: Ty<'tcx>,
301         mut def_bm: BindingMode,
302     ) -> (Ty<'tcx>, BindingMode) {
303         let mut expected = self.resolve_vars_with_obligations(&expected);
304
305         // Peel off as many `&` or `&mut` from the scrutinee type as possible. For example,
306         // for `match &&&mut Some(5)` the loop runs three times, aborting when it reaches
307         // the `Some(5)` which is not of type Ref.
308         //
309         // For each ampersand peeled off, update the binding mode and push the original
310         // type into the adjustments vector.
311         //
312         // See the examples in `ui/match-defbm*.rs`.
313         let mut pat_adjustments = vec![];
314         while let ty::Ref(_, inner_ty, inner_mutability) = expected.kind {
315             debug!("inspecting {:?}", expected);
316
317             debug!("current discriminant is Ref, inserting implicit deref");
318             // Preserve the reference type. We'll need it later during HAIR lowering.
319             pat_adjustments.push(expected);
320
321             expected = inner_ty;
322             def_bm = ty::BindByReference(match def_bm {
323                 // If default binding mode is by value, make it `ref` or `ref mut`
324                 // (depending on whether we observe `&` or `&mut`).
325                 ty::BindByValue(_) |
326                 // When `ref mut`, stay a `ref mut` (on `&mut`) or downgrade to `ref` (on `&`).
327                 ty::BindByReference(hir::Mutability::Mut) => inner_mutability,
328                 // Once a `ref`, always a `ref`.
329                 // This is because a `& &mut` cannot mutate the underlying value.
330                 ty::BindByReference(m @ hir::Mutability::Not) => m,
331             });
332         }
333
334         if pat_adjustments.len() > 0 {
335             debug!("default binding mode is now {:?}", def_bm);
336             self.inh.tables.borrow_mut().pat_adjustments_mut().insert(pat.hir_id, pat_adjustments);
337         }
338
339         (expected, def_bm)
340     }
341
342     fn check_pat_lit(
343         &self,
344         span: Span,
345         lt: &hir::Expr<'tcx>,
346         expected: Ty<'tcx>,
347         ti: TopInfo<'tcx>,
348     ) -> Ty<'tcx> {
349         // We've already computed the type above (when checking for a non-ref pat),
350         // so avoid computing it again.
351         let ty = self.node_ty(lt.hir_id);
352
353         // Byte string patterns behave the same way as array patterns
354         // They can denote both statically and dynamically-sized byte arrays.
355         let mut pat_ty = ty;
356         if let hir::ExprKind::Lit(ref lt) = lt.kind {
357             if let ast::LitKind::ByteStr(_) = lt.node {
358                 let expected_ty = self.structurally_resolved_type(span, expected);
359                 if let ty::Ref(_, r_ty, _) = expected_ty.kind {
360                     if let ty::Slice(_) = r_ty.kind {
361                         let tcx = self.tcx;
362                         pat_ty =
363                             tcx.mk_imm_ref(tcx.lifetimes.re_static, tcx.mk_slice(tcx.types.u8));
364                     }
365                 }
366             }
367         }
368
369         // Somewhat surprising: in this case, the subtyping relation goes the
370         // opposite way as the other cases. Actually what we really want is not
371         // a subtyping relation at all but rather that there exists a LUB
372         // (so that they can be compared). However, in practice, constants are
373         // always scalars or strings. For scalars subtyping is irrelevant,
374         // and for strings `ty` is type is `&'static str`, so if we say that
375         //
376         //     &'static str <: expected
377         //
378         // then that's equivalent to there existing a LUB.
379         if let Some(mut err) = self.demand_suptype_diag(span, expected, pat_ty) {
380             err.emit_unless(
381                 ti.span
382                     .filter(|&s| {
383                         // In the case of `if`- and `while`-expressions we've already checked
384                         // that `scrutinee: bool`. We know that the pattern is `true`,
385                         // so an error here would be a duplicate and from the wrong POV.
386                         s.is_desugaring(DesugaringKind::CondTemporary)
387                     })
388                     .is_some(),
389             );
390         }
391
392         pat_ty
393     }
394
395     fn check_pat_range(
396         &self,
397         span: Span,
398         lhs: &'tcx hir::Expr<'tcx>,
399         rhs: &'tcx hir::Expr<'tcx>,
400         expected: Ty<'tcx>,
401         ti: TopInfo<'tcx>,
402     ) -> Option<Ty<'tcx>> {
403         let lhs_ty = self.check_expr(lhs);
404         let rhs_ty = self.check_expr(rhs);
405
406         // Check that both end-points are of numeric or char type.
407         let numeric_or_char = |ty: Ty<'_>| ty.is_numeric() || ty.is_char() || ty.references_error();
408         let lhs_fail = !numeric_or_char(lhs_ty);
409         let rhs_fail = !numeric_or_char(rhs_ty);
410
411         if lhs_fail || rhs_fail {
412             self.emit_err_pat_range(span, lhs.span, rhs.span, lhs_fail, rhs_fail, lhs_ty, rhs_ty);
413             return None;
414         }
415
416         // Now that we know the types can be unified we find the unified type and use
417         // it to type the entire expression.
418         let common_type = self.resolve_vars_if_possible(&lhs_ty);
419
420         // Subtyping doesn't matter here, as the value is some kind of scalar.
421         let demand_eqtype = |x_span, y_span, x_ty, y_ty| {
422             self.demand_eqtype_pat_diag(x_span, expected, x_ty, ti).map(|mut err| {
423                 self.endpoint_has_type(&mut err, y_span, y_ty);
424                 err.emit();
425             });
426         };
427         demand_eqtype(lhs.span, rhs.span, lhs_ty, rhs_ty);
428         demand_eqtype(rhs.span, lhs.span, rhs_ty, lhs_ty);
429
430         Some(common_type)
431     }
432
433     fn endpoint_has_type(&self, err: &mut DiagnosticBuilder<'_>, span: Span, ty: Ty<'_>) {
434         if !ty.references_error() {
435             err.span_label(span, &format!("this is of type `{}`", ty));
436         }
437     }
438
439     fn emit_err_pat_range(
440         &self,
441         span: Span,
442         begin_span: Span,
443         end_span: Span,
444         lhs_fail: bool,
445         rhs_fail: bool,
446         lhs_ty: Ty<'tcx>,
447         rhs_ty: Ty<'tcx>,
448     ) {
449         let span = if lhs_fail && rhs_fail {
450             span
451         } else if lhs_fail {
452             begin_span
453         } else {
454             end_span
455         };
456
457         let mut err = struct_span_err!(
458             self.tcx.sess,
459             span,
460             E0029,
461             "only char and numeric types are allowed in range patterns"
462         );
463         let msg = |ty| format!("this is of type `{}` but it should be `char` or numeric", ty);
464         let mut one_side_err = |first_span, first_ty, second_span, second_ty: Ty<'_>| {
465             err.span_label(first_span, &msg(first_ty));
466             self.endpoint_has_type(&mut err, second_span, second_ty);
467         };
468         if lhs_fail && rhs_fail {
469             err.span_label(begin_span, &msg(lhs_ty));
470             err.span_label(end_span, &msg(rhs_ty));
471         } else if lhs_fail {
472             one_side_err(begin_span, lhs_ty, end_span, rhs_ty);
473         } else {
474             one_side_err(end_span, rhs_ty, begin_span, lhs_ty);
475         }
476         if self.tcx.sess.teach(&err.get_code().unwrap()) {
477             err.note(
478                 "In a match expression, only numbers and characters can be matched \
479                     against a range. This is because the compiler checks that the range \
480                     is non-empty at compile-time, and is unable to evaluate arbitrary \
481                     comparison functions. If you want to capture values of an orderable \
482                     type between two end-points, you can use a guard.",
483             );
484         }
485         err.emit();
486     }
487
488     fn check_pat_ident(
489         &self,
490         pat: &Pat<'_>,
491         ba: hir::BindingAnnotation,
492         var_id: HirId,
493         sub: Option<&'tcx Pat<'tcx>>,
494         expected: Ty<'tcx>,
495         def_bm: BindingMode,
496         ti: TopInfo<'tcx>,
497     ) -> Ty<'tcx> {
498         // Determine the binding mode...
499         let bm = match ba {
500             hir::BindingAnnotation::Unannotated => def_bm,
501             _ => BindingMode::convert(ba),
502         };
503         // ...and store it in a side table:
504         self.inh.tables.borrow_mut().pat_binding_modes_mut().insert(pat.hir_id, bm);
505
506         debug!("check_pat_ident: pat.hir_id={:?} bm={:?}", pat.hir_id, bm);
507
508         let local_ty = self.local_ty(pat.span, pat.hir_id).decl_ty;
509         let eq_ty = match bm {
510             ty::BindByReference(mutbl) => {
511                 // If the binding is like `ref x | ref const x | ref mut x`
512                 // then `x` is assigned a value of type `&M T` where M is the
513                 // mutability and T is the expected type.
514                 //
515                 // `x` is assigned a value of type `&M T`, hence `&M T <: typeof(x)`
516                 // is required. However, we use equality, which is stronger.
517                 // See (note_1) for an explanation.
518                 self.new_ref_ty(pat.span, mutbl, expected)
519             }
520             // Otherwise, the type of x is the expected type `T`.
521             ty::BindByValue(_) => {
522                 // As above, `T <: typeof(x)` is required, but we use equality, see (note_1).
523                 expected
524             }
525         };
526         self.demand_eqtype_pat(pat.span, eq_ty, local_ty, ti);
527
528         // If there are multiple arms, make sure they all agree on
529         // what the type of the binding `x` ought to be.
530         if var_id != pat.hir_id {
531             let vt = self.local_ty(pat.span, var_id).decl_ty;
532             self.demand_eqtype_pat(pat.span, vt, local_ty, ti);
533         }
534
535         if let Some(p) = sub {
536             self.check_pat(&p, expected, def_bm, ti);
537         }
538
539         local_ty
540     }
541
542     fn borrow_pat_suggestion(
543         &self,
544         err: &mut DiagnosticBuilder<'_>,
545         pat: &Pat<'_>,
546         inner: &Pat<'_>,
547         expected: Ty<'tcx>,
548     ) {
549         let tcx = self.tcx;
550         if let PatKind::Binding(..) = inner.kind {
551             let binding_parent_id = tcx.hir().get_parent_node(pat.hir_id);
552             let binding_parent = tcx.hir().get(binding_parent_id);
553             debug!("inner {:?} pat {:?} parent {:?}", inner, pat, binding_parent);
554             match binding_parent {
555                 hir::Node::Param(hir::Param { span, .. }) => {
556                     if let Ok(snippet) = tcx.sess.source_map().span_to_snippet(inner.span) {
557                         err.span_suggestion(
558                             *span,
559                             &format!("did you mean `{}`", snippet),
560                             format!(" &{}", expected),
561                             Applicability::MachineApplicable,
562                         );
563                     }
564                 }
565                 hir::Node::Arm(_) | hir::Node::Pat(_) => {
566                     // rely on match ergonomics or it might be nested `&&pat`
567                     if let Ok(snippet) = tcx.sess.source_map().span_to_snippet(inner.span) {
568                         err.span_suggestion(
569                             pat.span,
570                             "you can probably remove the explicit borrow",
571                             snippet,
572                             Applicability::MaybeIncorrect,
573                         );
574                     }
575                 }
576                 _ => {} // don't provide suggestions in other cases #55175
577             }
578         }
579     }
580
581     pub fn check_dereferenceable(&self, span: Span, expected: Ty<'tcx>, inner: &Pat<'_>) -> bool {
582         if let PatKind::Binding(..) = inner.kind {
583             if let Some(mt) = self.shallow_resolve(expected).builtin_deref(true) {
584                 if let ty::Dynamic(..) = mt.ty.kind {
585                     // This is "x = SomeTrait" being reduced from
586                     // "let &x = &SomeTrait" or "let box x = Box<SomeTrait>", an error.
587                     let type_str = self.ty_to_string(expected);
588                     let mut err = struct_span_err!(
589                         self.tcx.sess,
590                         span,
591                         E0033,
592                         "type `{}` cannot be dereferenced",
593                         type_str
594                     );
595                     err.span_label(span, format!("type `{}` cannot be dereferenced", type_str));
596                     if self.tcx.sess.teach(&err.get_code().unwrap()) {
597                         err.note(CANNOT_IMPLICITLY_DEREF_POINTER_TRAIT_OBJ);
598                     }
599                     err.emit();
600                     return false;
601                 }
602             }
603         }
604         true
605     }
606
607     fn check_pat_struct(
608         &self,
609         pat: &'tcx Pat<'tcx>,
610         qpath: &hir::QPath<'_>,
611         fields: &'tcx [hir::FieldPat<'tcx>],
612         etc: bool,
613         expected: Ty<'tcx>,
614         def_bm: BindingMode,
615         ti: TopInfo<'tcx>,
616     ) -> Ty<'tcx> {
617         // Resolve the path and check the definition for errors.
618         let (variant, pat_ty) = if let Some(variant_ty) = self.check_struct_path(qpath, pat.hir_id)
619         {
620             variant_ty
621         } else {
622             for field in fields {
623                 self.check_pat(&field.pat, self.tcx.types.err, def_bm, ti);
624             }
625             return self.tcx.types.err;
626         };
627
628         // Type-check the path.
629         self.demand_eqtype_pat(pat.span, expected, pat_ty, ti);
630
631         // Type-check subpatterns.
632         if self
633             .check_struct_pat_fields(pat_ty, pat.hir_id, pat.span, variant, fields, etc, def_bm, ti)
634         {
635             pat_ty
636         } else {
637             self.tcx.types.err
638         }
639     }
640
641     fn check_pat_path(
642         &self,
643         pat: &Pat<'_>,
644         path_resolution: (Res, Option<Ty<'tcx>>, &'b [hir::PathSegment<'b>]),
645         qpath: &hir::QPath<'_>,
646         expected: Ty<'tcx>,
647     ) -> Ty<'tcx> {
648         let tcx = self.tcx;
649
650         // We have already resolved the path.
651         let (res, opt_ty, segments) = path_resolution;
652         match res {
653             Res::Err => {
654                 self.set_tainted_by_errors();
655                 return tcx.types.err;
656             }
657             Res::Def(DefKind::Method, _)
658             | Res::Def(DefKind::Ctor(_, CtorKind::Fictive), _)
659             | Res::Def(DefKind::Ctor(_, CtorKind::Fn), _) => {
660                 report_unexpected_variant_res(tcx, res, pat.span, qpath);
661                 return tcx.types.err;
662             }
663             Res::Def(DefKind::Ctor(_, CtorKind::Const), _)
664             | Res::SelfCtor(..)
665             | Res::Def(DefKind::Const, _)
666             | Res::Def(DefKind::AssocConst, _) => {} // OK
667             _ => bug!("unexpected pattern resolution: {:?}", res),
668         }
669
670         // Type-check the path.
671         let pat_ty = self.instantiate_value_path(segments, opt_ty, res, pat.span, pat.hir_id).0;
672         self.demand_suptype(pat.span, expected, pat_ty);
673         pat_ty
674     }
675
676     fn check_pat_tuple_struct(
677         &self,
678         pat: &Pat<'_>,
679         qpath: &hir::QPath<'_>,
680         subpats: &'tcx [&'tcx Pat<'tcx>],
681         ddpos: Option<usize>,
682         expected: Ty<'tcx>,
683         def_bm: BindingMode,
684         ti: TopInfo<'tcx>,
685     ) -> Ty<'tcx> {
686         let tcx = self.tcx;
687         let on_error = || {
688             for pat in subpats {
689                 self.check_pat(&pat, tcx.types.err, def_bm, ti);
690             }
691         };
692         let report_unexpected_res = |res: Res| {
693             let msg = format!(
694                 "expected tuple struct or tuple variant, found {} `{}`",
695                 res.descr(),
696                 hir::print::to_string(tcx.hir(), |s| s.print_qpath(qpath, false)),
697             );
698             let mut err = struct_span_err!(tcx.sess, pat.span, E0164, "{}", msg);
699             match (res, &pat.kind) {
700                 (Res::Def(DefKind::Fn, _), _) | (Res::Def(DefKind::Method, _), _) => {
701                     err.span_label(pat.span, "`fn` calls are not allowed in patterns");
702                     err.help(
703                         "for more information, visit \
704                               https://doc.rust-lang.org/book/ch18-00-patterns.html",
705                     );
706                 }
707                 _ => {
708                     err.span_label(pat.span, "not a tuple variant or struct");
709                 }
710             }
711             err.emit();
712             on_error();
713         };
714
715         // Resolve the path and check the definition for errors.
716         let (res, opt_ty, segments) = self.resolve_ty_and_res_ufcs(qpath, pat.hir_id, pat.span);
717         if res == Res::Err {
718             self.set_tainted_by_errors();
719             on_error();
720             return self.tcx.types.err;
721         }
722
723         // Type-check the path.
724         let (pat_ty, res) =
725             self.instantiate_value_path(segments, opt_ty, res, pat.span, pat.hir_id);
726         if !pat_ty.is_fn() {
727             report_unexpected_res(res);
728             return tcx.types.err;
729         }
730
731         let variant = match res {
732             Res::Err => {
733                 self.set_tainted_by_errors();
734                 on_error();
735                 return tcx.types.err;
736             }
737             Res::Def(DefKind::AssocConst, _) | Res::Def(DefKind::Method, _) => {
738                 report_unexpected_res(res);
739                 return tcx.types.err;
740             }
741             Res::Def(DefKind::Ctor(_, CtorKind::Fn), _) => tcx.expect_variant_res(res),
742             _ => bug!("unexpected pattern resolution: {:?}", res),
743         };
744
745         // Replace constructor type with constructed type for tuple struct patterns.
746         let pat_ty = pat_ty.fn_sig(tcx).output();
747         let pat_ty = pat_ty.no_bound_vars().expect("expected fn type");
748
749         // Type-check the tuple struct pattern against the expected type.
750         let diag = self.demand_eqtype_pat_diag(pat.span, expected, pat_ty, ti);
751         let had_err = diag.is_some();
752         diag.map(|mut err| err.emit());
753
754         // Type-check subpatterns.
755         if subpats.len() == variant.fields.len()
756             || subpats.len() < variant.fields.len() && ddpos.is_some()
757         {
758             let substs = match pat_ty.kind {
759                 ty::Adt(_, substs) => substs,
760                 _ => bug!("unexpected pattern type {:?}", pat_ty),
761             };
762             for (i, subpat) in subpats.iter().enumerate_and_adjust(variant.fields.len(), ddpos) {
763                 let field_ty = self.field_ty(subpat.span, &variant.fields[i], substs);
764                 self.check_pat(&subpat, field_ty, def_bm, ti);
765
766                 self.tcx.check_stability(variant.fields[i].did, Some(pat.hir_id), subpat.span);
767             }
768         } else {
769             // Pattern has wrong number of fields.
770             self.e0023(pat.span, res, qpath, subpats, &variant.fields, expected, had_err);
771             on_error();
772             return tcx.types.err;
773         }
774         pat_ty
775     }
776
777     fn e0023(
778         &self,
779         pat_span: Span,
780         res: Res,
781         qpath: &hir::QPath<'_>,
782         subpats: &'tcx [&'tcx Pat<'tcx>],
783         fields: &'tcx [ty::FieldDef],
784         expected: Ty<'tcx>,
785         had_err: bool,
786     ) {
787         let subpats_ending = pluralize!(subpats.len());
788         let fields_ending = pluralize!(fields.len());
789         let res_span = self.tcx.def_span(res.def_id());
790         let mut err = struct_span_err!(
791             self.tcx.sess,
792             pat_span,
793             E0023,
794             "this pattern has {} field{}, but the corresponding {} has {} field{}",
795             subpats.len(),
796             subpats_ending,
797             res.descr(),
798             fields.len(),
799             fields_ending,
800         );
801         err.span_label(
802             pat_span,
803             format!("expected {} field{}, found {}", fields.len(), fields_ending, subpats.len(),),
804         )
805         .span_label(res_span, format!("{} defined here", res.descr()));
806
807         // Identify the case `Some(x, y)` where the expected type is e.g. `Option<(T, U)>`.
808         // More generally, the expected type wants a tuple variant with one field of an
809         // N-arity-tuple, e.g., `V_i((p_0, .., p_N))`. Meanwhile, the user supplied a pattern
810         // with the subpatterns directly in the tuple variant pattern, e.g., `V_i(p_0, .., p_N)`.
811         let missing_parenthesis = match (&expected.kind, fields, had_err) {
812             // #67037: only do this if we could sucessfully type-check the expected type against
813             // the tuple struct pattern. Otherwise the substs could get out of range on e.g.,
814             // `let P() = U;` where `P != U` with `struct P<T>(T);`.
815             (ty::Adt(_, substs), [field], false) => {
816                 let field_ty = self.field_ty(pat_span, field, substs);
817                 match field_ty.kind {
818                     ty::Tuple(_) => field_ty.tuple_fields().count() == subpats.len(),
819                     _ => false,
820                 }
821             }
822             _ => false,
823         };
824         if missing_parenthesis {
825             let (left, right) = match subpats {
826                 // This is the zero case; we aim to get the "hi" part of the `QPath`'s
827                 // span as the "lo" and then the "hi" part of the pattern's span as the "hi".
828                 // This looks like:
829                 //
830                 // help: missing parenthesis
831                 //   |
832                 // L |     let A(()) = A(());
833                 //   |          ^  ^
834                 [] => {
835                     let qpath_span = match qpath {
836                         hir::QPath::Resolved(_, path) => path.span,
837                         hir::QPath::TypeRelative(_, ps) => ps.ident.span,
838                     };
839                     (qpath_span.shrink_to_hi(), pat_span)
840                 }
841                 // Easy case. Just take the "lo" of the first sub-pattern and the "hi" of the
842                 // last sub-pattern. In the case of `A(x)` the first and last may coincide.
843                 // This looks like:
844                 //
845                 // help: missing parenthesis
846                 //   |
847                 // L |     let A((x, y)) = A((1, 2));
848                 //   |           ^    ^
849                 [first, ..] => (first.span.shrink_to_lo(), subpats.last().unwrap().span),
850             };
851             err.multipart_suggestion(
852                 "missing parenthesis",
853                 vec![(left, "(".to_string()), (right.shrink_to_hi(), ")".to_string())],
854                 Applicability::MachineApplicable,
855             );
856         }
857
858         err.emit();
859     }
860
861     fn check_pat_tuple(
862         &self,
863         span: Span,
864         elements: &'tcx [&'tcx Pat<'tcx>],
865         ddpos: Option<usize>,
866         expected: Ty<'tcx>,
867         def_bm: BindingMode,
868         ti: TopInfo<'tcx>,
869     ) -> Ty<'tcx> {
870         let tcx = self.tcx;
871         let mut expected_len = elements.len();
872         if ddpos.is_some() {
873             // Require known type only when `..` is present.
874             if let ty::Tuple(ref tys) = self.structurally_resolved_type(span, expected).kind {
875                 expected_len = tys.len();
876             }
877         }
878         let max_len = cmp::max(expected_len, elements.len());
879
880         let element_tys_iter = (0..max_len).map(|_| {
881             GenericArg::from(self.next_ty_var(
882                 // FIXME: `MiscVariable` for now -- obtaining the span and name information
883                 // from all tuple elements isn't trivial.
884                 TypeVariableOrigin { kind: TypeVariableOriginKind::TypeInference, span },
885             ))
886         });
887         let element_tys = tcx.mk_substs(element_tys_iter);
888         let pat_ty = tcx.mk_ty(ty::Tuple(element_tys));
889         if let Some(mut err) = self.demand_eqtype_diag(span, expected, pat_ty) {
890             err.emit();
891             // Walk subpatterns with an expected type of `err` in this case to silence
892             // further errors being emitted when using the bindings. #50333
893             let element_tys_iter = (0..max_len).map(|_| tcx.types.err);
894             for (_, elem) in elements.iter().enumerate_and_adjust(max_len, ddpos) {
895                 self.check_pat(elem, &tcx.types.err, def_bm, ti);
896             }
897             tcx.mk_tup(element_tys_iter)
898         } else {
899             for (i, elem) in elements.iter().enumerate_and_adjust(max_len, ddpos) {
900                 self.check_pat(elem, &element_tys[i].expect_ty(), def_bm, ti);
901             }
902             pat_ty
903         }
904     }
905
906     fn check_struct_pat_fields(
907         &self,
908         adt_ty: Ty<'tcx>,
909         pat_id: HirId,
910         span: Span,
911         variant: &'tcx ty::VariantDef,
912         fields: &'tcx [hir::FieldPat<'tcx>],
913         etc: bool,
914         def_bm: BindingMode,
915         ti: TopInfo<'tcx>,
916     ) -> bool {
917         let tcx = self.tcx;
918
919         let (substs, adt) = match adt_ty.kind {
920             ty::Adt(adt, substs) => (substs, adt),
921             _ => span_bug!(span, "struct pattern is not an ADT"),
922         };
923         let kind_name = adt.variant_descr();
924
925         // Index the struct fields' types.
926         let field_map = variant
927             .fields
928             .iter()
929             .enumerate()
930             .map(|(i, field)| (field.ident.modern(), (i, field)))
931             .collect::<FxHashMap<_, _>>();
932
933         // Keep track of which fields have already appeared in the pattern.
934         let mut used_fields = FxHashMap::default();
935         let mut no_field_errors = true;
936
937         let mut inexistent_fields = vec![];
938         // Typecheck each field.
939         for field in fields {
940             let span = field.span;
941             let ident = tcx.adjust_ident(field.ident, variant.def_id);
942             let field_ty = match used_fields.entry(ident) {
943                 Occupied(occupied) => {
944                     self.error_field_already_bound(span, field.ident, *occupied.get());
945                     no_field_errors = false;
946                     tcx.types.err
947                 }
948                 Vacant(vacant) => {
949                     vacant.insert(span);
950                     field_map
951                         .get(&ident)
952                         .map(|(i, f)| {
953                             self.write_field_index(field.hir_id, *i);
954                             self.tcx.check_stability(f.did, Some(pat_id), span);
955                             self.field_ty(span, f, substs)
956                         })
957                         .unwrap_or_else(|| {
958                             inexistent_fields.push(field.ident);
959                             no_field_errors = false;
960                             tcx.types.err
961                         })
962                 }
963             };
964
965             self.check_pat(&field.pat, field_ty, def_bm, ti);
966         }
967
968         let mut unmentioned_fields = variant
969             .fields
970             .iter()
971             .map(|field| field.ident.modern())
972             .filter(|ident| !used_fields.contains_key(&ident))
973             .collect::<Vec<_>>();
974
975         if inexistent_fields.len() > 0 && !variant.recovered {
976             self.error_inexistent_fields(
977                 kind_name,
978                 &inexistent_fields,
979                 &mut unmentioned_fields,
980                 variant,
981             );
982         }
983
984         // Require `..` if struct has non_exhaustive attribute.
985         if variant.is_field_list_non_exhaustive() && !adt.did.is_local() && !etc {
986             span_err!(
987                 tcx.sess,
988                 span,
989                 E0638,
990                 "`..` required with {} marked as non-exhaustive",
991                 kind_name
992             );
993         }
994
995         // Report an error if incorrect number of the fields were specified.
996         if kind_name == "union" {
997             if fields.len() != 1 {
998                 tcx.sess.span_err(span, "union patterns should have exactly one field");
999             }
1000             if etc {
1001                 tcx.sess.span_err(span, "`..` cannot be used in union patterns");
1002             }
1003         } else if !etc && unmentioned_fields.len() > 0 {
1004             self.error_unmentioned_fields(span, &unmentioned_fields, variant);
1005         }
1006         no_field_errors
1007     }
1008
1009     fn error_field_already_bound(&self, span: Span, ident: ast::Ident, other_field: Span) {
1010         struct_span_err!(
1011             self.tcx.sess,
1012             span,
1013             E0025,
1014             "field `{}` bound multiple times in the pattern",
1015             ident
1016         )
1017         .span_label(span, format!("multiple uses of `{}` in pattern", ident))
1018         .span_label(other_field, format!("first use of `{}`", ident))
1019         .emit();
1020     }
1021
1022     fn error_inexistent_fields(
1023         &self,
1024         kind_name: &str,
1025         inexistent_fields: &[ast::Ident],
1026         unmentioned_fields: &mut Vec<ast::Ident>,
1027         variant: &ty::VariantDef,
1028     ) {
1029         let tcx = self.tcx;
1030         let (field_names, t, plural) = if inexistent_fields.len() == 1 {
1031             (format!("a field named `{}`", inexistent_fields[0]), "this", "")
1032         } else {
1033             (
1034                 format!(
1035                     "fields named {}",
1036                     inexistent_fields
1037                         .iter()
1038                         .map(|ident| format!("`{}`", ident))
1039                         .collect::<Vec<String>>()
1040                         .join(", ")
1041                 ),
1042                 "these",
1043                 "s",
1044             )
1045         };
1046         let spans = inexistent_fields.iter().map(|ident| ident.span).collect::<Vec<_>>();
1047         let mut err = struct_span_err!(
1048             tcx.sess,
1049             spans,
1050             E0026,
1051             "{} `{}` does not have {}",
1052             kind_name,
1053             tcx.def_path_str(variant.def_id),
1054             field_names
1055         );
1056         if let Some(ident) = inexistent_fields.last() {
1057             err.span_label(
1058                 ident.span,
1059                 format!(
1060                     "{} `{}` does not have {} field{}",
1061                     kind_name,
1062                     tcx.def_path_str(variant.def_id),
1063                     t,
1064                     plural
1065                 ),
1066             );
1067             if plural == "" {
1068                 let input = unmentioned_fields.iter().map(|field| &field.name);
1069                 let suggested_name = find_best_match_for_name(input, &ident.as_str(), None);
1070                 if let Some(suggested_name) = suggested_name {
1071                     err.span_suggestion(
1072                         ident.span,
1073                         "a field with a similar name exists",
1074                         suggested_name.to_string(),
1075                         Applicability::MaybeIncorrect,
1076                     );
1077
1078                     // we don't want to throw `E0027` in case we have thrown `E0026` for them
1079                     unmentioned_fields.retain(|&x| x.name != suggested_name);
1080                 }
1081             }
1082         }
1083         if tcx.sess.teach(&err.get_code().unwrap()) {
1084             err.note(
1085                 "This error indicates that a struct pattern attempted to \
1086                     extract a non-existent field from a struct. Struct fields \
1087                     are identified by the name used before the colon : so struct \
1088                     patterns should resemble the declaration of the struct type \
1089                     being matched.\n\n\
1090                     If you are using shorthand field patterns but want to refer \
1091                     to the struct field by a different name, you should rename \
1092                     it explicitly.",
1093             );
1094         }
1095         err.emit();
1096     }
1097
1098     fn error_unmentioned_fields(
1099         &self,
1100         span: Span,
1101         unmentioned_fields: &[ast::Ident],
1102         variant: &ty::VariantDef,
1103     ) {
1104         let field_names = if unmentioned_fields.len() == 1 {
1105             format!("field `{}`", unmentioned_fields[0])
1106         } else {
1107             let fields = unmentioned_fields
1108                 .iter()
1109                 .map(|name| format!("`{}`", name))
1110                 .collect::<Vec<String>>()
1111                 .join(", ");
1112             format!("fields {}", fields)
1113         };
1114         let mut diag = struct_span_err!(
1115             self.tcx.sess,
1116             span,
1117             E0027,
1118             "pattern does not mention {}",
1119             field_names
1120         );
1121         diag.span_label(span, format!("missing {}", field_names));
1122         if variant.ctor_kind == CtorKind::Fn {
1123             diag.note("trying to match a tuple variant with a struct variant pattern");
1124         }
1125         if self.tcx.sess.teach(&diag.get_code().unwrap()) {
1126             diag.note(
1127                 "This error indicates that a pattern for a struct fails to specify a \
1128                     sub-pattern for every one of the struct's fields. Ensure that each field \
1129                     from the struct's definition is mentioned in the pattern, or use `..` to \
1130                     ignore unwanted fields.",
1131             );
1132         }
1133         diag.emit();
1134     }
1135
1136     fn check_pat_box(
1137         &self,
1138         span: Span,
1139         inner: &'tcx Pat<'tcx>,
1140         expected: Ty<'tcx>,
1141         def_bm: BindingMode,
1142         ti: TopInfo<'tcx>,
1143     ) -> Ty<'tcx> {
1144         let tcx = self.tcx;
1145         let (box_ty, inner_ty) = if self.check_dereferenceable(span, expected, &inner) {
1146             // Here, `demand::subtype` is good enough, but I don't
1147             // think any errors can be introduced by using `demand::eqtype`.
1148             let inner_ty = self.next_ty_var(TypeVariableOrigin {
1149                 kind: TypeVariableOriginKind::TypeInference,
1150                 span: inner.span,
1151             });
1152             let box_ty = tcx.mk_box(inner_ty);
1153             self.demand_eqtype_pat(span, expected, box_ty, ti);
1154             (box_ty, inner_ty)
1155         } else {
1156             (tcx.types.err, tcx.types.err)
1157         };
1158         self.check_pat(&inner, inner_ty, def_bm, ti);
1159         box_ty
1160     }
1161
1162     fn check_pat_ref(
1163         &self,
1164         pat: &Pat<'_>,
1165         inner: &'tcx Pat<'tcx>,
1166         mutbl: hir::Mutability,
1167         expected: Ty<'tcx>,
1168         def_bm: BindingMode,
1169         ti: TopInfo<'tcx>,
1170     ) -> Ty<'tcx> {
1171         let tcx = self.tcx;
1172         let expected = self.shallow_resolve(expected);
1173         let (rptr_ty, inner_ty) = if self.check_dereferenceable(pat.span, expected, &inner) {
1174             // `demand::subtype` would be good enough, but using `eqtype` turns
1175             // out to be equally general. See (note_1) for details.
1176
1177             // Take region, inner-type from expected type if we can,
1178             // to avoid creating needless variables. This also helps with
1179             // the bad  interactions of the given hack detailed in (note_1).
1180             debug!("check_pat_ref: expected={:?}", expected);
1181             match expected.kind {
1182                 ty::Ref(_, r_ty, r_mutbl) if r_mutbl == mutbl => (expected, r_ty),
1183                 _ => {
1184                     let inner_ty = self.next_ty_var(TypeVariableOrigin {
1185                         kind: TypeVariableOriginKind::TypeInference,
1186                         span: inner.span,
1187                     });
1188                     let rptr_ty = self.new_ref_ty(pat.span, mutbl, inner_ty);
1189                     debug!("check_pat_ref: demanding {:?} = {:?}", expected, rptr_ty);
1190                     let err = self.demand_eqtype_diag(pat.span, expected, rptr_ty);
1191
1192                     // Look for a case like `fn foo(&foo: u32)` and suggest
1193                     // `fn foo(foo: &u32)`
1194                     if let Some(mut err) = err {
1195                         self.borrow_pat_suggestion(&mut err, &pat, &inner, &expected);
1196                         err.emit();
1197                     }
1198                     (rptr_ty, inner_ty)
1199                 }
1200             }
1201         } else {
1202             (tcx.types.err, tcx.types.err)
1203         };
1204         self.check_pat(&inner, inner_ty, def_bm, ti);
1205         rptr_ty
1206     }
1207
1208     /// Create a reference type with a fresh region variable.
1209     fn new_ref_ty(&self, span: Span, mutbl: hir::Mutability, ty: Ty<'tcx>) -> Ty<'tcx> {
1210         let region = self.next_region_var(infer::PatternRegion(span));
1211         let mt = ty::TypeAndMut { ty, mutbl };
1212         self.tcx.mk_ref(region, mt)
1213     }
1214
1215     /// Type check a slice pattern.
1216     ///
1217     /// Syntactically, these look like `[pat_0, ..., pat_n]`.
1218     /// Semantically, we are type checking a pattern with structure:
1219     /// ```
1220     /// [before_0, ..., before_n, (slice, after_0, ... after_n)?]
1221     /// ```
1222     /// The type of `slice`, if it is present, depends on the `expected` type.
1223     /// If `slice` is missing, then so is `after_i`.
1224     /// If `slice` is present, it can still represent 0 elements.
1225     fn check_pat_slice(
1226         &self,
1227         span: Span,
1228         before: &'tcx [&'tcx Pat<'tcx>],
1229         slice: Option<&'tcx Pat<'tcx>>,
1230         after: &'tcx [&'tcx Pat<'tcx>],
1231         expected: Ty<'tcx>,
1232         def_bm: BindingMode,
1233         ti: TopInfo<'tcx>,
1234     ) -> Ty<'tcx> {
1235         let err = self.tcx.types.err;
1236         let expected = self.structurally_resolved_type(span, expected);
1237         let (inner_ty, slice_ty, expected) = match expected.kind {
1238             // An array, so we might have something like `let [a, b, c] = [0, 1, 2];`.
1239             ty::Array(inner_ty, len) => {
1240                 let min = before.len() as u64 + after.len() as u64;
1241                 let slice_ty = self
1242                     .check_array_pat_len(span, slice, len, min)
1243                     .map_or(err, |len| self.tcx.mk_array(inner_ty, len));
1244                 (inner_ty, slice_ty, expected)
1245             }
1246             ty::Slice(inner_ty) => (inner_ty, expected, expected),
1247             // The expected type must be an array or slice, but was neither, so error.
1248             _ => {
1249                 if !expected.references_error() {
1250                     self.error_expected_array_or_slice(span, expected);
1251                 }
1252                 (err, err, err)
1253             }
1254         };
1255
1256         // Type check all the patterns before `slice`.
1257         for elt in before {
1258             self.check_pat(&elt, inner_ty, def_bm, ti);
1259         }
1260         // Type check the `slice`, if present, against its expected type.
1261         if let Some(slice) = slice {
1262             self.check_pat(&slice, slice_ty, def_bm, ti);
1263         }
1264         // Type check the elements after `slice`, if present.
1265         for elt in after {
1266             self.check_pat(&elt, inner_ty, def_bm, ti);
1267         }
1268         expected
1269     }
1270
1271     /// Type check the length of an array pattern.
1272     ///
1273     /// Return the length of the variable length pattern,
1274     /// if it exists and there are no errors.
1275     fn check_array_pat_len(
1276         &self,
1277         span: Span,
1278         slice: Option<&'tcx Pat<'tcx>>,
1279         len: &ty::Const<'tcx>,
1280         min_len: u64,
1281     ) -> Option<u64> {
1282         if let Some(len) = len.try_eval_usize(self.tcx, self.param_env) {
1283             // Now we know the length...
1284             if slice.is_none() {
1285                 // ...and since there is no variable-length pattern,
1286                 // we require an exact match between the number of elements
1287                 // in the array pattern and as provided by the matched type.
1288                 if min_len != len {
1289                     self.error_scrutinee_inconsistent_length(span, min_len, len);
1290                 }
1291             } else if let r @ Some(_) = len.checked_sub(min_len) {
1292                 // The variable-length pattern was there,
1293                 // so it has an array type with the remaining elements left as its size...
1294                 return r;
1295             } else {
1296                 // ...however, in this case, there were no remaining elements.
1297                 // That is, the slice pattern requires more than the array type offers.
1298                 self.error_scrutinee_with_rest_inconsistent_length(span, min_len, len);
1299             }
1300         } else {
1301             // No idea what the length is, which happens if we have e.g.,
1302             // `let [a, b] = arr` where `arr: [T; N]` where `const N: usize`.
1303             self.error_scrutinee_unfixed_length(span);
1304         }
1305         None
1306     }
1307
1308     fn error_scrutinee_inconsistent_length(&self, span: Span, min_len: u64, size: u64) {
1309         struct_span_err!(
1310             self.tcx.sess,
1311             span,
1312             E0527,
1313             "pattern requires {} element{} but array has {}",
1314             min_len,
1315             pluralize!(min_len),
1316             size,
1317         )
1318         .span_label(span, format!("expected {} element{}", size, pluralize!(size)))
1319         .emit();
1320     }
1321
1322     fn error_scrutinee_with_rest_inconsistent_length(&self, span: Span, min_len: u64, size: u64) {
1323         struct_span_err!(
1324             self.tcx.sess,
1325             span,
1326             E0528,
1327             "pattern requires at least {} element{} but array has {}",
1328             min_len,
1329             pluralize!(min_len),
1330             size,
1331         )
1332         .span_label(
1333             span,
1334             format!("pattern cannot match array of {} element{}", size, pluralize!(size),),
1335         )
1336         .emit();
1337     }
1338
1339     fn error_scrutinee_unfixed_length(&self, span: Span) {
1340         struct_span_err!(
1341             self.tcx.sess,
1342             span,
1343             E0730,
1344             "cannot pattern-match on an array without a fixed length",
1345         )
1346         .emit();
1347     }
1348
1349     fn error_expected_array_or_slice(&self, span: Span, expected_ty: Ty<'tcx>) {
1350         let mut err = struct_span_err!(
1351             self.tcx.sess,
1352             span,
1353             E0529,
1354             "expected an array or slice, found `{}`",
1355             expected_ty
1356         );
1357         if let ty::Ref(_, ty, _) = expected_ty.kind {
1358             if let ty::Array(..) | ty::Slice(..) = ty.kind {
1359                 err.help("the semantics of slice patterns changed recently; see issue #62254");
1360             }
1361         }
1362         err.span_label(span, format!("pattern cannot match with input type `{}`", expected_ty));
1363         err.emit();
1364     }
1365 }