]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_typeck/src/check/expr.rs
Auto merge of #94105 - 5225225:destabilise-entry-insert, r=Mark-Simulacrum
[rust.git] / compiler / rustc_typeck / src / check / expr.rs
1 //! Type checking expressions.
2 //!
3 //! See `mod.rs` for more context on type checking in general.
4
5 use crate::astconv::AstConv as _;
6 use crate::check::cast;
7 use crate::check::coercion::CoerceMany;
8 use crate::check::fatally_break_rust;
9 use crate::check::method::SelfSource;
10 use crate::check::report_unexpected_variant_res;
11 use crate::check::BreakableCtxt;
12 use crate::check::Diverges;
13 use crate::check::DynamicCoerceMany;
14 use crate::check::Expectation::{self, ExpectCastableToType, ExpectHasType, NoExpectation};
15 use crate::check::FnCtxt;
16 use crate::check::Needs;
17 use crate::check::TupleArgumentsFlag::DontTupleArguments;
18 use crate::errors::{
19     FieldMultiplySpecifiedInInitializer, FunctionalRecordUpdateOnNonStruct,
20     YieldExprOutsideOfGenerator,
21 };
22 use crate::type_error_struct;
23
24 use crate::errors::{AddressOfTemporaryTaken, ReturnStmtOutsideOfFnBody, StructExprNonExhaustive};
25 use rustc_ast as ast;
26 use rustc_data_structures::fx::FxHashMap;
27 use rustc_data_structures::stack::ensure_sufficient_stack;
28 use rustc_errors::ErrorReported;
29 use rustc_errors::{pluralize, struct_span_err, Applicability, DiagnosticBuilder, DiagnosticId};
30 use rustc_hir as hir;
31 use rustc_hir::def::{CtorKind, DefKind, Res};
32 use rustc_hir::def_id::DefId;
33 use rustc_hir::intravisit::Visitor;
34 use rustc_hir::{ExprKind, HirId, QPath};
35 use rustc_infer::infer;
36 use rustc_infer::infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
37 use rustc_infer::infer::InferOk;
38 use rustc_middle::middle::stability;
39 use rustc_middle::ty::adjustment::{Adjust, Adjustment, AllowTwoPhase};
40 use rustc_middle::ty::error::ExpectedFound;
41 use rustc_middle::ty::error::TypeError::{FieldMisMatch, Sorts};
42 use rustc_middle::ty::subst::SubstsRef;
43 use rustc_middle::ty::{self, AdtKind, Ty, TypeFoldable};
44 use rustc_session::parse::feature_err;
45 use rustc_span::edition::LATEST_STABLE_EDITION;
46 use rustc_span::hygiene::DesugaringKind;
47 use rustc_span::lev_distance::find_best_match_for_name;
48 use rustc_span::source_map::Span;
49 use rustc_span::symbol::{kw, sym, Ident, Symbol};
50 use rustc_span::{BytePos, Pos};
51 use rustc_trait_selection::traits::{self, ObligationCauseCode};
52
53 impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
54     fn check_expr_eq_type(&self, expr: &'tcx hir::Expr<'tcx>, expected: Ty<'tcx>) {
55         let ty = self.check_expr_with_hint(expr, expected);
56         self.demand_eqtype(expr.span, expected, ty);
57     }
58
59     pub fn check_expr_has_type_or_error(
60         &self,
61         expr: &'tcx hir::Expr<'tcx>,
62         expected: Ty<'tcx>,
63         extend_err: impl Fn(&mut DiagnosticBuilder<'_>),
64     ) -> Ty<'tcx> {
65         self.check_expr_meets_expectation_or_error(expr, ExpectHasType(expected), extend_err)
66     }
67
68     fn check_expr_meets_expectation_or_error(
69         &self,
70         expr: &'tcx hir::Expr<'tcx>,
71         expected: Expectation<'tcx>,
72         extend_err: impl Fn(&mut DiagnosticBuilder<'_>),
73     ) -> Ty<'tcx> {
74         let expected_ty = expected.to_option(&self).unwrap_or(self.tcx.types.bool);
75         let mut ty = self.check_expr_with_expectation(expr, expected);
76
77         // While we don't allow *arbitrary* coercions here, we *do* allow
78         // coercions from ! to `expected`.
79         if ty.is_never() {
80             assert!(
81                 !self.typeck_results.borrow().adjustments().contains_key(expr.hir_id),
82                 "expression with never type wound up being adjusted"
83             );
84             let adj_ty = self.next_ty_var(TypeVariableOrigin {
85                 kind: TypeVariableOriginKind::AdjustmentType,
86                 span: expr.span,
87             });
88             self.apply_adjustments(
89                 expr,
90                 vec![Adjustment { kind: Adjust::NeverToAny, target: adj_ty }],
91             );
92             ty = adj_ty;
93         }
94
95         if let Some(mut err) = self.demand_suptype_diag(expr.span, expected_ty, ty) {
96             let expr = expr.peel_drop_temps();
97             self.suggest_deref_ref_or_into(&mut err, expr, expected_ty, ty, None);
98             extend_err(&mut err);
99             err.emit();
100         }
101         ty
102     }
103
104     pub(super) fn check_expr_coercable_to_type(
105         &self,
106         expr: &'tcx hir::Expr<'tcx>,
107         expected: Ty<'tcx>,
108         expected_ty_expr: Option<&'tcx hir::Expr<'tcx>>,
109     ) -> Ty<'tcx> {
110         let ty = self.check_expr_with_hint(expr, expected);
111         // checks don't need two phase
112         self.demand_coerce(expr, ty, expected, expected_ty_expr, AllowTwoPhase::No)
113     }
114
115     pub(super) fn check_expr_with_hint(
116         &self,
117         expr: &'tcx hir::Expr<'tcx>,
118         expected: Ty<'tcx>,
119     ) -> Ty<'tcx> {
120         self.check_expr_with_expectation(expr, ExpectHasType(expected))
121     }
122
123     fn check_expr_with_expectation_and_needs(
124         &self,
125         expr: &'tcx hir::Expr<'tcx>,
126         expected: Expectation<'tcx>,
127         needs: Needs,
128     ) -> Ty<'tcx> {
129         let ty = self.check_expr_with_expectation(expr, expected);
130
131         // If the expression is used in a place whether mutable place is required
132         // e.g. LHS of assignment, perform the conversion.
133         if let Needs::MutPlace = needs {
134             self.convert_place_derefs_to_mutable(expr);
135         }
136
137         ty
138     }
139
140     pub(super) fn check_expr(&self, expr: &'tcx hir::Expr<'tcx>) -> Ty<'tcx> {
141         self.check_expr_with_expectation(expr, NoExpectation)
142     }
143
144     pub(super) fn check_expr_with_needs(
145         &self,
146         expr: &'tcx hir::Expr<'tcx>,
147         needs: Needs,
148     ) -> Ty<'tcx> {
149         self.check_expr_with_expectation_and_needs(expr, NoExpectation, needs)
150     }
151
152     /// Invariant:
153     /// If an expression has any sub-expressions that result in a type error,
154     /// inspecting that expression's type with `ty.references_error()` will return
155     /// true. Likewise, if an expression is known to diverge, inspecting its
156     /// type with `ty::type_is_bot` will return true (n.b.: since Rust is
157     /// strict, _|_ can appear in the type of an expression that does not,
158     /// itself, diverge: for example, fn() -> _|_.)
159     /// Note that inspecting a type's structure *directly* may expose the fact
160     /// that there are actually multiple representations for `Error`, so avoid
161     /// that when err needs to be handled differently.
162     #[instrument(skip(self, expr), level = "debug")]
163     pub(super) fn check_expr_with_expectation(
164         &self,
165         expr: &'tcx hir::Expr<'tcx>,
166         expected: Expectation<'tcx>,
167     ) -> Ty<'tcx> {
168         self.check_expr_with_expectation_and_args(expr, expected, &[])
169     }
170
171     /// Same as `check_expr_with_expectation`, but allows us to pass in the arguments of a
172     /// `ExprKind::Call` when evaluating its callee when it is an `ExprKind::Path`.
173     pub(super) fn check_expr_with_expectation_and_args(
174         &self,
175         expr: &'tcx hir::Expr<'tcx>,
176         expected: Expectation<'tcx>,
177         args: &'tcx [hir::Expr<'tcx>],
178     ) -> Ty<'tcx> {
179         if self.tcx().sess.verbose() {
180             // make this code only run with -Zverbose because it is probably slow
181             if let Ok(lint_str) = self.tcx.sess.source_map().span_to_snippet(expr.span) {
182                 if !lint_str.contains('\n') {
183                     debug!("expr text: {}", lint_str);
184                 } else {
185                     let mut lines = lint_str.lines();
186                     if let Some(line0) = lines.next() {
187                         let remaining_lines = lines.count();
188                         debug!("expr text: {}", line0);
189                         debug!("expr text: ...(and {} more lines)", remaining_lines);
190                     }
191                 }
192             }
193         }
194
195         // True if `expr` is a `Try::from_ok(())` that is a result of desugaring a try block
196         // without the final expr (e.g. `try { return; }`). We don't want to generate an
197         // unreachable_code lint for it since warnings for autogenerated code are confusing.
198         let is_try_block_generated_unit_expr = match expr.kind {
199             ExprKind::Call(_, args) if expr.span.is_desugaring(DesugaringKind::TryBlock) => {
200                 args.len() == 1 && args[0].span.is_desugaring(DesugaringKind::TryBlock)
201             }
202
203             _ => false,
204         };
205
206         // Warn for expressions after diverging siblings.
207         if !is_try_block_generated_unit_expr {
208             self.warn_if_unreachable(expr.hir_id, expr.span, "expression");
209         }
210
211         // Hide the outer diverging and has_errors flags.
212         let old_diverges = self.diverges.replace(Diverges::Maybe);
213         let old_has_errors = self.has_errors.replace(false);
214
215         let ty = ensure_sufficient_stack(|| match &expr.kind {
216             hir::ExprKind::Path(
217                 qpath @ hir::QPath::Resolved(..) | qpath @ hir::QPath::TypeRelative(..),
218             ) => self.check_expr_path(qpath, expr, args),
219             _ => self.check_expr_kind(expr, expected),
220         });
221
222         // Warn for non-block expressions with diverging children.
223         match expr.kind {
224             ExprKind::Block(..)
225             | ExprKind::If(..)
226             | ExprKind::Let(..)
227             | ExprKind::Loop(..)
228             | ExprKind::Match(..) => {}
229             // If `expr` is a result of desugaring the try block and is an ok-wrapped
230             // diverging expression (e.g. it arose from desugaring of `try { return }`),
231             // we skip issuing a warning because it is autogenerated code.
232             ExprKind::Call(..) if expr.span.is_desugaring(DesugaringKind::TryBlock) => {}
233             ExprKind::Call(callee, _) => self.warn_if_unreachable(expr.hir_id, callee.span, "call"),
234             ExprKind::MethodCall(segment, ..) => {
235                 self.warn_if_unreachable(expr.hir_id, segment.ident.span, "call")
236             }
237             _ => self.warn_if_unreachable(expr.hir_id, expr.span, "expression"),
238         }
239
240         // Any expression that produces a value of type `!` must have diverged
241         if ty.is_never() {
242             self.diverges.set(self.diverges.get() | Diverges::always(expr.span));
243         }
244
245         // Record the type, which applies it effects.
246         // We need to do this after the warning above, so that
247         // we don't warn for the diverging expression itself.
248         self.write_ty(expr.hir_id, ty);
249
250         // Combine the diverging and has_error flags.
251         self.diverges.set(self.diverges.get() | old_diverges);
252         self.has_errors.set(self.has_errors.get() | old_has_errors);
253
254         debug!("type of {} is...", self.tcx.hir().node_to_string(expr.hir_id));
255         debug!("... {:?}, expected is {:?}", ty, expected);
256
257         ty
258     }
259
260     #[instrument(skip(self, expr), level = "debug")]
261     fn check_expr_kind(
262         &self,
263         expr: &'tcx hir::Expr<'tcx>,
264         expected: Expectation<'tcx>,
265     ) -> Ty<'tcx> {
266         trace!("expr={:#?}", expr);
267
268         let tcx = self.tcx;
269         match expr.kind {
270             ExprKind::Box(subexpr) => self.check_expr_box(subexpr, expected),
271             ExprKind::Lit(ref lit) => self.check_lit(&lit, expected),
272             ExprKind::Binary(op, lhs, rhs) => self.check_binop(expr, op, lhs, rhs),
273             ExprKind::Assign(lhs, rhs, ref span) => {
274                 self.check_expr_assign(expr, expected, lhs, rhs, span)
275             }
276             ExprKind::AssignOp(op, lhs, rhs) => self.check_binop_assign(expr, op, lhs, rhs),
277             ExprKind::Unary(unop, oprnd) => self.check_expr_unary(unop, oprnd, expected, expr),
278             ExprKind::AddrOf(kind, mutbl, oprnd) => {
279                 self.check_expr_addr_of(kind, mutbl, oprnd, expected, expr)
280             }
281             ExprKind::Path(QPath::LangItem(lang_item, _, hir_id)) => {
282                 self.check_lang_item_path(lang_item, expr, hir_id)
283             }
284             ExprKind::Path(ref qpath) => self.check_expr_path(qpath, expr, &[]),
285             ExprKind::InlineAsm(asm) => self.check_expr_asm(asm),
286             ExprKind::Break(destination, ref expr_opt) => {
287                 self.check_expr_break(destination, expr_opt.as_deref(), expr)
288             }
289             ExprKind::Continue(destination) => {
290                 if destination.target_id.is_ok() {
291                     tcx.types.never
292                 } else {
293                     // There was an error; make type-check fail.
294                     tcx.ty_error()
295                 }
296             }
297             ExprKind::Ret(ref expr_opt) => self.check_expr_return(expr_opt.as_deref(), expr),
298             ExprKind::Let(let_expr) => self.check_expr_let(let_expr),
299             ExprKind::Loop(body, _, source, _) => {
300                 self.check_expr_loop(body, source, expected, expr)
301             }
302             ExprKind::Match(discrim, arms, match_src) => {
303                 self.check_match(expr, &discrim, arms, expected, match_src)
304             }
305             ExprKind::Closure(capture, decl, body_id, _, gen) => {
306                 self.check_expr_closure(expr, capture, &decl, body_id, gen, expected)
307             }
308             ExprKind::Block(body, _) => self.check_block_with_expected(&body, expected),
309             ExprKind::Call(callee, args) => self.check_call(expr, &callee, args, expected),
310             ExprKind::MethodCall(segment, args, _) => {
311                 self.check_method_call(expr, segment, args, expected)
312             }
313             ExprKind::Cast(e, t) => self.check_expr_cast(e, t, expr),
314             ExprKind::Type(e, t) => {
315                 let ty = self.to_ty_saving_user_provided_ty(&t);
316                 self.check_expr_eq_type(&e, ty);
317                 ty
318             }
319             ExprKind::If(cond, then_expr, opt_else_expr) => {
320                 self.check_then_else(cond, then_expr, opt_else_expr, expr.span, expected)
321             }
322             ExprKind::DropTemps(e) => self.check_expr_with_expectation(e, expected),
323             ExprKind::Array(args) => self.check_expr_array(args, expected, expr),
324             ExprKind::ConstBlock(ref anon_const) => {
325                 self.check_expr_const_block(anon_const, expected, expr)
326             }
327             ExprKind::Repeat(element, ref count) => {
328                 self.check_expr_repeat(element, count, expected, expr)
329             }
330             ExprKind::Tup(elts) => self.check_expr_tuple(elts, expected, expr),
331             ExprKind::Struct(qpath, fields, ref base_expr) => {
332                 self.check_expr_struct(expr, expected, qpath, fields, base_expr)
333             }
334             ExprKind::Field(base, field) => self.check_field(expr, &base, field),
335             ExprKind::Index(base, idx) => self.check_expr_index(base, idx, expr),
336             ExprKind::Yield(value, ref src) => self.check_expr_yield(value, expr, src),
337             hir::ExprKind::Err => tcx.ty_error(),
338         }
339     }
340
341     fn check_expr_box(&self, expr: &'tcx hir::Expr<'tcx>, expected: Expectation<'tcx>) -> Ty<'tcx> {
342         let expected_inner = expected.to_option(self).map_or(NoExpectation, |ty| match ty.kind() {
343             ty::Adt(def, _) if def.is_box() => Expectation::rvalue_hint(self, ty.boxed_ty()),
344             _ => NoExpectation,
345         });
346         let referent_ty = self.check_expr_with_expectation(expr, expected_inner);
347         self.require_type_is_sized(referent_ty, expr.span, traits::SizedBoxType);
348         self.tcx.mk_box(referent_ty)
349     }
350
351     fn check_expr_unary(
352         &self,
353         unop: hir::UnOp,
354         oprnd: &'tcx hir::Expr<'tcx>,
355         expected: Expectation<'tcx>,
356         expr: &'tcx hir::Expr<'tcx>,
357     ) -> Ty<'tcx> {
358         let tcx = self.tcx;
359         let expected_inner = match unop {
360             hir::UnOp::Not | hir::UnOp::Neg => expected,
361             hir::UnOp::Deref => NoExpectation,
362         };
363         let mut oprnd_t = self.check_expr_with_expectation(&oprnd, expected_inner);
364
365         if !oprnd_t.references_error() {
366             oprnd_t = self.structurally_resolved_type(expr.span, oprnd_t);
367             match unop {
368                 hir::UnOp::Deref => {
369                     if let Some(ty) = self.lookup_derefing(expr, oprnd, oprnd_t) {
370                         oprnd_t = ty;
371                     } else {
372                         let mut err = type_error_struct!(
373                             tcx.sess,
374                             expr.span,
375                             oprnd_t,
376                             E0614,
377                             "type `{}` cannot be dereferenced",
378                             oprnd_t,
379                         );
380                         let sp = tcx.sess.source_map().start_point(expr.span);
381                         if let Some(sp) =
382                             tcx.sess.parse_sess.ambiguous_block_expr_parse.borrow().get(&sp)
383                         {
384                             tcx.sess.parse_sess.expr_parentheses_needed(&mut err, *sp);
385                         }
386                         err.emit();
387                         oprnd_t = tcx.ty_error();
388                     }
389                 }
390                 hir::UnOp::Not => {
391                     let result = self.check_user_unop(expr, oprnd_t, unop);
392                     // If it's builtin, we can reuse the type, this helps inference.
393                     if !(oprnd_t.is_integral() || *oprnd_t.kind() == ty::Bool) {
394                         oprnd_t = result;
395                     }
396                 }
397                 hir::UnOp::Neg => {
398                     let result = self.check_user_unop(expr, oprnd_t, unop);
399                     // If it's builtin, we can reuse the type, this helps inference.
400                     if !oprnd_t.is_numeric() {
401                         oprnd_t = result;
402                     }
403                 }
404             }
405         }
406         oprnd_t
407     }
408
409     fn check_expr_addr_of(
410         &self,
411         kind: hir::BorrowKind,
412         mutbl: hir::Mutability,
413         oprnd: &'tcx hir::Expr<'tcx>,
414         expected: Expectation<'tcx>,
415         expr: &'tcx hir::Expr<'tcx>,
416     ) -> Ty<'tcx> {
417         let hint = expected.only_has_type(self).map_or(NoExpectation, |ty| {
418             match ty.kind() {
419                 ty::Ref(_, ty, _) | ty::RawPtr(ty::TypeAndMut { ty, .. }) => {
420                     if oprnd.is_syntactic_place_expr() {
421                         // Places may legitimately have unsized types.
422                         // For example, dereferences of a fat pointer and
423                         // the last field of a struct can be unsized.
424                         ExpectHasType(*ty)
425                     } else {
426                         Expectation::rvalue_hint(self, *ty)
427                     }
428                 }
429                 _ => NoExpectation,
430             }
431         });
432         let ty =
433             self.check_expr_with_expectation_and_needs(&oprnd, hint, Needs::maybe_mut_place(mutbl));
434
435         let tm = ty::TypeAndMut { ty, mutbl };
436         match kind {
437             _ if tm.ty.references_error() => self.tcx.ty_error(),
438             hir::BorrowKind::Raw => {
439                 self.check_named_place_expr(oprnd);
440                 self.tcx.mk_ptr(tm)
441             }
442             hir::BorrowKind::Ref => {
443                 // Note: at this point, we cannot say what the best lifetime
444                 // is to use for resulting pointer.  We want to use the
445                 // shortest lifetime possible so as to avoid spurious borrowck
446                 // errors.  Moreover, the longest lifetime will depend on the
447                 // precise details of the value whose address is being taken
448                 // (and how long it is valid), which we don't know yet until
449                 // type inference is complete.
450                 //
451                 // Therefore, here we simply generate a region variable. The
452                 // region inferencer will then select a suitable value.
453                 // Finally, borrowck will infer the value of the region again,
454                 // this time with enough precision to check that the value
455                 // whose address was taken can actually be made to live as long
456                 // as it needs to live.
457                 let region = self.next_region_var(infer::AddrOfRegion(expr.span));
458                 self.tcx.mk_ref(region, tm)
459             }
460         }
461     }
462
463     /// Does this expression refer to a place that either:
464     /// * Is based on a local or static.
465     /// * Contains a dereference
466     /// Note that the adjustments for the children of `expr` should already
467     /// have been resolved.
468     fn check_named_place_expr(&self, oprnd: &'tcx hir::Expr<'tcx>) {
469         let is_named = oprnd.is_place_expr(|base| {
470             // Allow raw borrows if there are any deref adjustments.
471             //
472             // const VAL: (i32,) = (0,);
473             // const REF: &(i32,) = &(0,);
474             //
475             // &raw const VAL.0;            // ERROR
476             // &raw const REF.0;            // OK, same as &raw const (*REF).0;
477             //
478             // This is maybe too permissive, since it allows
479             // `let u = &raw const Box::new((1,)).0`, which creates an
480             // immediately dangling raw pointer.
481             self.typeck_results
482                 .borrow()
483                 .adjustments()
484                 .get(base.hir_id)
485                 .map_or(false, |x| x.iter().any(|adj| matches!(adj.kind, Adjust::Deref(_))))
486         });
487         if !is_named {
488             self.tcx.sess.emit_err(AddressOfTemporaryTaken { span: oprnd.span })
489         }
490     }
491
492     fn check_lang_item_path(
493         &self,
494         lang_item: hir::LangItem,
495         expr: &'tcx hir::Expr<'tcx>,
496         hir_id: Option<hir::HirId>,
497     ) -> Ty<'tcx> {
498         self.resolve_lang_item_path(lang_item, expr.span, expr.hir_id, hir_id).1
499     }
500
501     pub(crate) fn check_expr_path(
502         &self,
503         qpath: &'tcx hir::QPath<'tcx>,
504         expr: &'tcx hir::Expr<'tcx>,
505         args: &'tcx [hir::Expr<'tcx>],
506     ) -> Ty<'tcx> {
507         let tcx = self.tcx;
508         let (res, opt_ty, segs) =
509             self.resolve_ty_and_res_fully_qualified_call(qpath, expr.hir_id, expr.span);
510         let ty = match res {
511             Res::Err => {
512                 self.set_tainted_by_errors();
513                 tcx.ty_error()
514             }
515             Res::Def(DefKind::Ctor(_, CtorKind::Fictive), _) => {
516                 report_unexpected_variant_res(tcx, res, expr.span);
517                 tcx.ty_error()
518             }
519             _ => self.instantiate_value_path(segs, opt_ty, res, expr.span, expr.hir_id).0,
520         };
521
522         if let ty::FnDef(..) = ty.kind() {
523             let fn_sig = ty.fn_sig(tcx);
524             if !tcx.features().unsized_fn_params {
525                 // We want to remove some Sized bounds from std functions,
526                 // but don't want to expose the removal to stable Rust.
527                 // i.e., we don't want to allow
528                 //
529                 // ```rust
530                 // drop as fn(str);
531                 // ```
532                 //
533                 // to work in stable even if the Sized bound on `drop` is relaxed.
534                 for i in 0..fn_sig.inputs().skip_binder().len() {
535                     // We just want to check sizedness, so instead of introducing
536                     // placeholder lifetimes with probing, we just replace higher lifetimes
537                     // with fresh vars.
538                     let span = args.get(i).map(|a| a.span).unwrap_or(expr.span);
539                     let input = self
540                         .replace_bound_vars_with_fresh_vars(
541                             span,
542                             infer::LateBoundRegionConversionTime::FnCall,
543                             fn_sig.input(i),
544                         )
545                         .0;
546                     self.require_type_is_sized_deferred(
547                         input,
548                         span,
549                         traits::SizedArgumentType(None),
550                     );
551                 }
552             }
553             // Here we want to prevent struct constructors from returning unsized types.
554             // There were two cases this happened: fn pointer coercion in stable
555             // and usual function call in presence of unsized_locals.
556             // Also, as we just want to check sizedness, instead of introducing
557             // placeholder lifetimes with probing, we just replace higher lifetimes
558             // with fresh vars.
559             let output = self
560                 .replace_bound_vars_with_fresh_vars(
561                     expr.span,
562                     infer::LateBoundRegionConversionTime::FnCall,
563                     fn_sig.output(),
564                 )
565                 .0;
566             self.require_type_is_sized_deferred(output, expr.span, traits::SizedReturnType);
567         }
568
569         // We always require that the type provided as the value for
570         // a type parameter outlives the moment of instantiation.
571         let substs = self.typeck_results.borrow().node_substs(expr.hir_id);
572         self.add_wf_bounds(substs, expr);
573
574         ty
575     }
576
577     fn check_expr_break(
578         &self,
579         destination: hir::Destination,
580         expr_opt: Option<&'tcx hir::Expr<'tcx>>,
581         expr: &'tcx hir::Expr<'tcx>,
582     ) -> Ty<'tcx> {
583         let tcx = self.tcx;
584         if let Ok(target_id) = destination.target_id {
585             let (e_ty, cause);
586             if let Some(e) = expr_opt {
587                 // If this is a break with a value, we need to type-check
588                 // the expression. Get an expected type from the loop context.
589                 let opt_coerce_to = {
590                     // We should release `enclosing_breakables` before the `check_expr_with_hint`
591                     // below, so can't move this block of code to the enclosing scope and share
592                     // `ctxt` with the second `encloding_breakables` borrow below.
593                     let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
594                     match enclosing_breakables.opt_find_breakable(target_id) {
595                         Some(ctxt) => ctxt.coerce.as_ref().map(|coerce| coerce.expected_ty()),
596                         None => {
597                             // Avoid ICE when `break` is inside a closure (#65383).
598                             return tcx.ty_error_with_message(
599                                 expr.span,
600                                 "break was outside loop, but no error was emitted",
601                             );
602                         }
603                     }
604                 };
605
606                 // If the loop context is not a `loop { }`, then break with
607                 // a value is illegal, and `opt_coerce_to` will be `None`.
608                 // Just set expectation to error in that case.
609                 let coerce_to = opt_coerce_to.unwrap_or_else(|| tcx.ty_error());
610
611                 // Recurse without `enclosing_breakables` borrowed.
612                 e_ty = self.check_expr_with_hint(e, coerce_to);
613                 cause = self.misc(e.span);
614             } else {
615                 // Otherwise, this is a break *without* a value. That's
616                 // always legal, and is equivalent to `break ()`.
617                 e_ty = tcx.mk_unit();
618                 cause = self.misc(expr.span);
619             }
620
621             // Now that we have type-checked `expr_opt`, borrow
622             // the `enclosing_loops` field and let's coerce the
623             // type of `expr_opt` into what is expected.
624             let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
625             let ctxt = match enclosing_breakables.opt_find_breakable(target_id) {
626                 Some(ctxt) => ctxt,
627                 None => {
628                     // Avoid ICE when `break` is inside a closure (#65383).
629                     return tcx.ty_error_with_message(
630                         expr.span,
631                         "break was outside loop, but no error was emitted",
632                     );
633                 }
634             };
635
636             if let Some(ref mut coerce) = ctxt.coerce {
637                 if let Some(ref e) = expr_opt {
638                     coerce.coerce(self, &cause, e, e_ty);
639                 } else {
640                     assert!(e_ty.is_unit());
641                     let ty = coerce.expected_ty();
642                     coerce.coerce_forced_unit(
643                         self,
644                         &cause,
645                         &mut |mut err| {
646                             self.suggest_mismatched_types_on_tail(
647                                 &mut err, expr, ty, e_ty, target_id,
648                             );
649                             if let Some(val) = ty_kind_suggestion(ty) {
650                                 let label = destination
651                                     .label
652                                     .map(|l| format!(" {}", l.ident))
653                                     .unwrap_or_else(String::new);
654                                 err.span_suggestion(
655                                     expr.span,
656                                     "give it a value of the expected type",
657                                     format!("break{} {}", label, val),
658                                     Applicability::HasPlaceholders,
659                                 );
660                             }
661                         },
662                         false,
663                     );
664                 }
665             } else {
666                 // If `ctxt.coerce` is `None`, we can just ignore
667                 // the type of the expression.  This is because
668                 // either this was a break *without* a value, in
669                 // which case it is always a legal type (`()`), or
670                 // else an error would have been flagged by the
671                 // `loops` pass for using break with an expression
672                 // where you are not supposed to.
673                 assert!(expr_opt.is_none() || self.tcx.sess.has_errors());
674             }
675
676             // If we encountered a `break`, then (no surprise) it may be possible to break from the
677             // loop... unless the value being returned from the loop diverges itself, e.g.
678             // `break return 5` or `break loop {}`.
679             ctxt.may_break |= !self.diverges.get().is_always();
680
681             // the type of a `break` is always `!`, since it diverges
682             tcx.types.never
683         } else {
684             // Otherwise, we failed to find the enclosing loop;
685             // this can only happen if the `break` was not
686             // inside a loop at all, which is caught by the
687             // loop-checking pass.
688             let err = self.tcx.ty_error_with_message(
689                 expr.span,
690                 "break was outside loop, but no error was emitted",
691             );
692
693             // We still need to assign a type to the inner expression to
694             // prevent the ICE in #43162.
695             if let Some(e) = expr_opt {
696                 self.check_expr_with_hint(e, err);
697
698                 // ... except when we try to 'break rust;'.
699                 // ICE this expression in particular (see #43162).
700                 if let ExprKind::Path(QPath::Resolved(_, path)) = e.kind {
701                     if path.segments.len() == 1 && path.segments[0].ident.name == sym::rust {
702                         fatally_break_rust(self.tcx.sess);
703                     }
704                 }
705             }
706
707             // There was an error; make type-check fail.
708             err
709         }
710     }
711
712     fn check_expr_return(
713         &self,
714         expr_opt: Option<&'tcx hir::Expr<'tcx>>,
715         expr: &'tcx hir::Expr<'tcx>,
716     ) -> Ty<'tcx> {
717         if self.ret_coercion.is_none() {
718             let mut err = ReturnStmtOutsideOfFnBody {
719                 span: expr.span,
720                 encl_body_span: None,
721                 encl_fn_span: None,
722             };
723
724             let encl_item_id = self.tcx.hir().get_parent_item(expr.hir_id);
725
726             if let Some(hir::Node::Item(hir::Item {
727                 kind: hir::ItemKind::Fn(..),
728                 span: encl_fn_span,
729                 ..
730             }))
731             | Some(hir::Node::TraitItem(hir::TraitItem {
732                 kind: hir::TraitItemKind::Fn(_, hir::TraitFn::Provided(_)),
733                 span: encl_fn_span,
734                 ..
735             }))
736             | Some(hir::Node::ImplItem(hir::ImplItem {
737                 kind: hir::ImplItemKind::Fn(..),
738                 span: encl_fn_span,
739                 ..
740             })) = self.tcx.hir().find_by_def_id(encl_item_id)
741             {
742                 // We are inside a function body, so reporting "return statement
743                 // outside of function body" needs an explanation.
744
745                 let encl_body_owner_id = self.tcx.hir().enclosing_body_owner(expr.hir_id);
746
747                 // If this didn't hold, we would not have to report an error in
748                 // the first place.
749                 assert_ne!(hir::HirId::make_owner(encl_item_id), encl_body_owner_id);
750
751                 let encl_body_id = self.tcx.hir().body_owned_by(encl_body_owner_id);
752                 let encl_body = self.tcx.hir().body(encl_body_id);
753
754                 err.encl_body_span = Some(encl_body.value.span);
755                 err.encl_fn_span = Some(*encl_fn_span);
756             }
757
758             self.tcx.sess.emit_err(err);
759
760             if let Some(e) = expr_opt {
761                 // We still have to type-check `e` (issue #86188), but calling
762                 // `check_return_expr` only works inside fn bodies.
763                 self.check_expr(e);
764             }
765         } else if let Some(e) = expr_opt {
766             if self.ret_coercion_span.get().is_none() {
767                 self.ret_coercion_span.set(Some(e.span));
768             }
769             self.check_return_expr(e, true);
770         } else {
771             let mut coercion = self.ret_coercion.as_ref().unwrap().borrow_mut();
772             if self.ret_coercion_span.get().is_none() {
773                 self.ret_coercion_span.set(Some(expr.span));
774             }
775             let cause = self.cause(expr.span, ObligationCauseCode::ReturnNoExpression);
776             if let Some((fn_decl, _)) = self.get_fn_decl(expr.hir_id) {
777                 coercion.coerce_forced_unit(
778                     self,
779                     &cause,
780                     &mut |db| {
781                         let span = fn_decl.output.span();
782                         if let Ok(snippet) = self.tcx.sess.source_map().span_to_snippet(span) {
783                             db.span_label(
784                                 span,
785                                 format!("expected `{}` because of this return type", snippet),
786                             );
787                         }
788                     },
789                     true,
790                 );
791             } else {
792                 coercion.coerce_forced_unit(self, &cause, &mut |_| (), true);
793             }
794         }
795         self.tcx.types.never
796     }
797
798     /// `explicit_return` is `true` if we're checkng an explicit `return expr`,
799     /// and `false` if we're checking a trailing expression.
800     pub(super) fn check_return_expr(
801         &self,
802         return_expr: &'tcx hir::Expr<'tcx>,
803         explicit_return: bool,
804     ) {
805         let ret_coercion = self.ret_coercion.as_ref().unwrap_or_else(|| {
806             span_bug!(return_expr.span, "check_return_expr called outside fn body")
807         });
808
809         let ret_ty = ret_coercion.borrow().expected_ty();
810         let return_expr_ty = self.check_expr_with_hint(return_expr, ret_ty);
811         let mut span = return_expr.span;
812         // Use the span of the trailing expression for our cause,
813         // not the span of the entire function
814         if !explicit_return {
815             if let ExprKind::Block(body, _) = return_expr.kind {
816                 if let Some(last_expr) = body.expr {
817                     span = last_expr.span;
818                 }
819             }
820         }
821         ret_coercion.borrow_mut().coerce(
822             self,
823             &self.cause(span, ObligationCauseCode::ReturnValue(return_expr.hir_id)),
824             return_expr,
825             return_expr_ty,
826         );
827     }
828
829     pub(crate) fn check_lhs_assignable(
830         &self,
831         lhs: &'tcx hir::Expr<'tcx>,
832         err_code: &'static str,
833         op_span: Span,
834     ) {
835         if lhs.is_syntactic_place_expr() {
836             return;
837         }
838
839         // FIXME: Make this use SessionDiagnostic once error codes can be dynamically set.
840         let mut err = self.tcx.sess.struct_span_err_with_code(
841             op_span,
842             "invalid left-hand side of assignment",
843             DiagnosticId::Error(err_code.into()),
844         );
845         err.span_label(lhs.span, "cannot assign to this expression");
846
847         let mut parent = self.tcx.hir().get_parent_node(lhs.hir_id);
848         while let Some(node) = self.tcx.hir().find(parent) {
849             match node {
850                 hir::Node::Expr(hir::Expr {
851                     kind:
852                         hir::ExprKind::Loop(
853                             hir::Block {
854                                 expr:
855                                     Some(hir::Expr {
856                                         kind:
857                                             hir::ExprKind::Match(expr, ..) | hir::ExprKind::If(expr, ..),
858                                         ..
859                                     }),
860                                 ..
861                             },
862                             _,
863                             hir::LoopSource::While,
864                             _,
865                         ),
866                     ..
867                 }) => {
868                     // Check if our lhs is a child of the condition of a while loop
869                     let expr_is_ancestor = std::iter::successors(Some(lhs.hir_id), |id| {
870                         self.tcx.hir().find_parent_node(*id)
871                     })
872                     .take_while(|id| *id != parent)
873                     .any(|id| id == expr.hir_id);
874                     // if it is, then we have a situation like `while Some(0) = value.get(0) {`,
875                     // where `while let` was more likely intended.
876                     if expr_is_ancestor {
877                         err.span_suggestion_verbose(
878                             expr.span.shrink_to_lo(),
879                             "you might have meant to use pattern destructuring",
880                             "let ".to_string(),
881                             Applicability::MachineApplicable,
882                         );
883                     }
884                     break;
885                 }
886                 hir::Node::Item(_)
887                 | hir::Node::ImplItem(_)
888                 | hir::Node::TraitItem(_)
889                 | hir::Node::Crate(_) => break,
890                 _ => {
891                     parent = self.tcx.hir().get_parent_node(parent);
892                 }
893             }
894         }
895
896         err.emit();
897     }
898
899     // A generic function for checking the 'then' and 'else' clauses in an 'if'
900     // or 'if-else' expression.
901     fn check_then_else(
902         &self,
903         cond_expr: &'tcx hir::Expr<'tcx>,
904         then_expr: &'tcx hir::Expr<'tcx>,
905         opt_else_expr: Option<&'tcx hir::Expr<'tcx>>,
906         sp: Span,
907         orig_expected: Expectation<'tcx>,
908     ) -> Ty<'tcx> {
909         let cond_ty = self.check_expr_has_type_or_error(cond_expr, self.tcx.types.bool, |_| {});
910
911         self.warn_if_unreachable(
912             cond_expr.hir_id,
913             then_expr.span,
914             "block in `if` or `while` expression",
915         );
916
917         let cond_diverges = self.diverges.get();
918         self.diverges.set(Diverges::Maybe);
919
920         let expected = orig_expected.adjust_for_branches(self);
921         let then_ty = self.check_expr_with_expectation(then_expr, expected);
922         let then_diverges = self.diverges.get();
923         self.diverges.set(Diverges::Maybe);
924
925         // We've already taken the expected type's preferences
926         // into account when typing the `then` branch. To figure
927         // out the initial shot at a LUB, we thus only consider
928         // `expected` if it represents a *hard* constraint
929         // (`only_has_type`); otherwise, we just go with a
930         // fresh type variable.
931         let coerce_to_ty = expected.coercion_target_type(self, sp);
932         let mut coerce: DynamicCoerceMany<'_> = CoerceMany::new(coerce_to_ty);
933
934         coerce.coerce(self, &self.misc(sp), then_expr, then_ty);
935
936         if let Some(else_expr) = opt_else_expr {
937             let else_ty = if sp.desugaring_kind() == Some(DesugaringKind::LetElse) {
938                 // todo introduce `check_expr_with_expectation(.., Expectation::LetElse)`
939                 //   for errors that point to the offending expression rather than the entire block.
940                 //   We could use `check_expr_eq_type(.., tcx.types.never)`, but then there is no
941                 //   way to detect that the expected type originated from let-else and provide
942                 //   a customized error.
943                 let else_ty = self.check_expr(else_expr);
944                 let cause = self.cause(else_expr.span, ObligationCauseCode::LetElse);
945
946                 if let Some(mut err) =
947                     self.demand_eqtype_with_origin(&cause, self.tcx.types.never, else_ty)
948                 {
949                     err.emit();
950                     self.tcx.ty_error()
951                 } else {
952                     else_ty
953                 }
954             } else {
955                 self.check_expr_with_expectation(else_expr, expected)
956             };
957             let else_diverges = self.diverges.get();
958
959             let opt_suggest_box_span =
960                 self.opt_suggest_box_span(else_expr.span, else_ty, orig_expected);
961             let if_cause =
962                 self.if_cause(sp, then_expr, else_expr, then_ty, else_ty, opt_suggest_box_span);
963
964             coerce.coerce(self, &if_cause, else_expr, else_ty);
965
966             // We won't diverge unless both branches do (or the condition does).
967             self.diverges.set(cond_diverges | then_diverges & else_diverges);
968         } else {
969             self.if_fallback_coercion(sp, then_expr, &mut coerce);
970
971             // If the condition is false we can't diverge.
972             self.diverges.set(cond_diverges);
973         }
974
975         let result_ty = coerce.complete(self);
976         if cond_ty.references_error() { self.tcx.ty_error() } else { result_ty }
977     }
978
979     /// Type check assignment expression `expr` of form `lhs = rhs`.
980     /// The expected type is `()` and is passed to the function for the purposes of diagnostics.
981     fn check_expr_assign(
982         &self,
983         expr: &'tcx hir::Expr<'tcx>,
984         expected: Expectation<'tcx>,
985         lhs: &'tcx hir::Expr<'tcx>,
986         rhs: &'tcx hir::Expr<'tcx>,
987         span: &Span,
988     ) -> Ty<'tcx> {
989         let expected_ty = expected.coercion_target_type(self, expr.span);
990         if expected_ty == self.tcx.types.bool {
991             // The expected type is `bool` but this will result in `()` so we can reasonably
992             // say that the user intended to write `lhs == rhs` instead of `lhs = rhs`.
993             // The likely cause of this is `if foo = bar { .. }`.
994             let actual_ty = self.tcx.mk_unit();
995             let mut err = self.demand_suptype_diag(expr.span, expected_ty, actual_ty).unwrap();
996             let lhs_ty = self.check_expr(&lhs);
997             let rhs_ty = self.check_expr(&rhs);
998             let (applicability, eq) = if self.can_coerce(rhs_ty, lhs_ty) {
999                 (Applicability::MachineApplicable, true)
1000             } else {
1001                 (Applicability::MaybeIncorrect, false)
1002             };
1003             if !lhs.is_syntactic_place_expr() && !matches!(lhs.kind, hir::ExprKind::Lit(_)) {
1004                 // Do not suggest `if let x = y` as `==` is way more likely to be the intention.
1005                 let hir = self.tcx.hir();
1006                 if let hir::Node::Expr(hir::Expr { kind: ExprKind::If { .. }, .. }) =
1007                     hir.get(hir.get_parent_node(hir.get_parent_node(expr.hir_id)))
1008                 {
1009                     err.span_suggestion_verbose(
1010                         expr.span.shrink_to_lo(),
1011                         "you might have meant to use pattern matching",
1012                         "let ".to_string(),
1013                         applicability,
1014                     );
1015                 };
1016             }
1017             if eq {
1018                 err.span_suggestion_verbose(
1019                     *span,
1020                     "you might have meant to compare for equality",
1021                     "==".to_string(),
1022                     applicability,
1023                 );
1024             }
1025
1026             // If the assignment expression itself is ill-formed, don't
1027             // bother emitting another error
1028             if lhs_ty.references_error() || rhs_ty.references_error() {
1029                 err.delay_as_bug()
1030             } else {
1031                 err.emit();
1032             }
1033             return self.tcx.ty_error();
1034         }
1035
1036         self.check_lhs_assignable(lhs, "E0070", *span);
1037
1038         let lhs_ty = self.check_expr_with_needs(&lhs, Needs::MutPlace);
1039         let rhs_ty = self.check_expr_coercable_to_type(&rhs, lhs_ty, Some(lhs));
1040
1041         self.require_type_is_sized(lhs_ty, lhs.span, traits::AssignmentLhsSized);
1042
1043         if lhs_ty.references_error() || rhs_ty.references_error() {
1044             self.tcx.ty_error()
1045         } else {
1046             self.tcx.mk_unit()
1047         }
1048     }
1049
1050     fn check_expr_let(&self, let_expr: &'tcx hir::Let<'tcx>) -> Ty<'tcx> {
1051         // for let statements, this is done in check_stmt
1052         let init = let_expr.init;
1053         self.warn_if_unreachable(init.hir_id, init.span, "block in `let` expression");
1054         // otherwise check exactly as a let statement
1055         self.check_decl(let_expr.into());
1056         // but return a bool, for this is a boolean expression
1057         self.tcx.types.bool
1058     }
1059
1060     fn check_expr_loop(
1061         &self,
1062         body: &'tcx hir::Block<'tcx>,
1063         source: hir::LoopSource,
1064         expected: Expectation<'tcx>,
1065         expr: &'tcx hir::Expr<'tcx>,
1066     ) -> Ty<'tcx> {
1067         let coerce = match source {
1068             // you can only use break with a value from a normal `loop { }`
1069             hir::LoopSource::Loop => {
1070                 let coerce_to = expected.coercion_target_type(self, body.span);
1071                 Some(CoerceMany::new(coerce_to))
1072             }
1073
1074             hir::LoopSource::While | hir::LoopSource::ForLoop => None,
1075         };
1076
1077         let ctxt = BreakableCtxt {
1078             coerce,
1079             may_break: false, // Will get updated if/when we find a `break`.
1080         };
1081
1082         let (ctxt, ()) = self.with_breakable_ctxt(expr.hir_id, ctxt, || {
1083             self.check_block_no_value(&body);
1084         });
1085
1086         if ctxt.may_break {
1087             // No way to know whether it's diverging because
1088             // of a `break` or an outer `break` or `return`.
1089             self.diverges.set(Diverges::Maybe);
1090         }
1091
1092         // If we permit break with a value, then result type is
1093         // the LUB of the breaks (possibly ! if none); else, it
1094         // is nil. This makes sense because infinite loops
1095         // (which would have type !) are only possible iff we
1096         // permit break with a value [1].
1097         if ctxt.coerce.is_none() && !ctxt.may_break {
1098             // [1]
1099             self.tcx.sess.delay_span_bug(body.span, "no coercion, but loop may not break");
1100         }
1101         ctxt.coerce.map(|c| c.complete(self)).unwrap_or_else(|| self.tcx.mk_unit())
1102     }
1103
1104     /// Checks a method call.
1105     fn check_method_call(
1106         &self,
1107         expr: &'tcx hir::Expr<'tcx>,
1108         segment: &hir::PathSegment<'_>,
1109         args: &'tcx [hir::Expr<'tcx>],
1110         expected: Expectation<'tcx>,
1111     ) -> Ty<'tcx> {
1112         let rcvr = &args[0];
1113         let rcvr_t = self.check_expr(&rcvr);
1114         // no need to check for bot/err -- callee does that
1115         let rcvr_t = self.structurally_resolved_type(args[0].span, rcvr_t);
1116         let span = segment.ident.span;
1117
1118         let method = match self.lookup_method(rcvr_t, segment, span, expr, rcvr, args) {
1119             Ok(method) => {
1120                 // We could add a "consider `foo::<params>`" suggestion here, but I wasn't able to
1121                 // trigger this codepath causing `structuraly_resolved_type` to emit an error.
1122
1123                 self.write_method_call(expr.hir_id, method);
1124                 Ok(method)
1125             }
1126             Err(error) => {
1127                 if segment.ident.name != kw::Empty {
1128                     if let Some(mut err) = self.report_method_error(
1129                         span,
1130                         rcvr_t,
1131                         segment.ident,
1132                         SelfSource::MethodCall(&args[0]),
1133                         error,
1134                         Some(args),
1135                     ) {
1136                         err.emit();
1137                     }
1138                 }
1139                 Err(())
1140             }
1141         };
1142
1143         // Call the generic checker.
1144         self.check_method_argument_types(
1145             span,
1146             expr,
1147             method,
1148             &args[1..],
1149             DontTupleArguments,
1150             expected,
1151         )
1152     }
1153
1154     fn check_expr_cast(
1155         &self,
1156         e: &'tcx hir::Expr<'tcx>,
1157         t: &'tcx hir::Ty<'tcx>,
1158         expr: &'tcx hir::Expr<'tcx>,
1159     ) -> Ty<'tcx> {
1160         // Find the type of `e`. Supply hints based on the type we are casting to,
1161         // if appropriate.
1162         let t_cast = self.to_ty_saving_user_provided_ty(t);
1163         let t_cast = self.resolve_vars_if_possible(t_cast);
1164         let t_expr = self.check_expr_with_expectation(e, ExpectCastableToType(t_cast));
1165         let t_expr = self.resolve_vars_if_possible(t_expr);
1166
1167         // Eagerly check for some obvious errors.
1168         if t_expr.references_error() || t_cast.references_error() {
1169             self.tcx.ty_error()
1170         } else {
1171             // Defer other checks until we're done type checking.
1172             let mut deferred_cast_checks = self.deferred_cast_checks.borrow_mut();
1173             match cast::CastCheck::new(self, e, t_expr, t_cast, t.span, expr.span) {
1174                 Ok(cast_check) => {
1175                     debug!(
1176                         "check_expr_cast: deferring cast from {:?} to {:?}: {:?}",
1177                         t_cast, t_expr, cast_check,
1178                     );
1179                     deferred_cast_checks.push(cast_check);
1180                     t_cast
1181                 }
1182                 Err(ErrorReported) => self.tcx.ty_error(),
1183             }
1184         }
1185     }
1186
1187     fn check_expr_array(
1188         &self,
1189         args: &'tcx [hir::Expr<'tcx>],
1190         expected: Expectation<'tcx>,
1191         expr: &'tcx hir::Expr<'tcx>,
1192     ) -> Ty<'tcx> {
1193         let element_ty = if !args.is_empty() {
1194             let coerce_to = expected
1195                 .to_option(self)
1196                 .and_then(|uty| match *uty.kind() {
1197                     ty::Array(ty, _) | ty::Slice(ty) => Some(ty),
1198                     _ => None,
1199                 })
1200                 .unwrap_or_else(|| {
1201                     self.next_ty_var(TypeVariableOrigin {
1202                         kind: TypeVariableOriginKind::TypeInference,
1203                         span: expr.span,
1204                     })
1205                 });
1206             let mut coerce = CoerceMany::with_coercion_sites(coerce_to, args);
1207             assert_eq!(self.diverges.get(), Diverges::Maybe);
1208             for e in args {
1209                 let e_ty = self.check_expr_with_hint(e, coerce_to);
1210                 let cause = self.misc(e.span);
1211                 coerce.coerce(self, &cause, e, e_ty);
1212             }
1213             coerce.complete(self)
1214         } else {
1215             self.next_ty_var(TypeVariableOrigin {
1216                 kind: TypeVariableOriginKind::TypeInference,
1217                 span: expr.span,
1218             })
1219         };
1220         self.tcx.mk_array(element_ty, args.len() as u64)
1221     }
1222
1223     fn check_expr_const_block(
1224         &self,
1225         anon_const: &'tcx hir::AnonConst,
1226         expected: Expectation<'tcx>,
1227         _expr: &'tcx hir::Expr<'tcx>,
1228     ) -> Ty<'tcx> {
1229         let body = self.tcx.hir().body(anon_const.body);
1230
1231         // Create a new function context.
1232         let fcx = FnCtxt::new(self, self.param_env.with_const(), body.value.hir_id);
1233         crate::check::GatherLocalsVisitor::new(&fcx).visit_body(body);
1234
1235         let ty = fcx.check_expr_with_expectation(&body.value, expected);
1236         fcx.require_type_is_sized(ty, body.value.span, traits::ConstSized);
1237         fcx.write_ty(anon_const.hir_id, ty);
1238         ty
1239     }
1240
1241     fn check_expr_repeat(
1242         &self,
1243         element: &'tcx hir::Expr<'tcx>,
1244         count: &'tcx hir::ArrayLen,
1245         expected: Expectation<'tcx>,
1246         _expr: &'tcx hir::Expr<'tcx>,
1247     ) -> Ty<'tcx> {
1248         let tcx = self.tcx;
1249         let count = self.array_length_to_const(count);
1250
1251         let uty = match expected {
1252             ExpectHasType(uty) => match *uty.kind() {
1253                 ty::Array(ty, _) | ty::Slice(ty) => Some(ty),
1254                 _ => None,
1255             },
1256             _ => None,
1257         };
1258
1259         let (element_ty, t) = match uty {
1260             Some(uty) => {
1261                 self.check_expr_coercable_to_type(&element, uty, None);
1262                 (uty, uty)
1263             }
1264             None => {
1265                 let ty = self.next_ty_var(TypeVariableOrigin {
1266                     kind: TypeVariableOriginKind::MiscVariable,
1267                     span: element.span,
1268                 });
1269                 let element_ty = self.check_expr_has_type_or_error(&element, ty, |_| {});
1270                 (element_ty, ty)
1271             }
1272         };
1273
1274         if element_ty.references_error() {
1275             return tcx.ty_error();
1276         }
1277
1278         tcx.mk_ty(ty::Array(t, count))
1279     }
1280
1281     fn check_expr_tuple(
1282         &self,
1283         elts: &'tcx [hir::Expr<'tcx>],
1284         expected: Expectation<'tcx>,
1285         expr: &'tcx hir::Expr<'tcx>,
1286     ) -> Ty<'tcx> {
1287         let flds = expected.only_has_type(self).and_then(|ty| {
1288             let ty = self.resolve_vars_with_obligations(ty);
1289             match ty.kind() {
1290                 ty::Tuple(flds) => Some(&flds[..]),
1291                 _ => None,
1292             }
1293         });
1294
1295         let elt_ts_iter = elts.iter().enumerate().map(|(i, e)| match flds {
1296             Some(fs) if i < fs.len() => {
1297                 let ety = fs[i].expect_ty();
1298                 self.check_expr_coercable_to_type(&e, ety, None);
1299                 ety
1300             }
1301             _ => self.check_expr_with_expectation(&e, NoExpectation),
1302         });
1303         let tuple = self.tcx.mk_tup(elt_ts_iter);
1304         if tuple.references_error() {
1305             self.tcx.ty_error()
1306         } else {
1307             self.require_type_is_sized(tuple, expr.span, traits::TupleInitializerSized);
1308             tuple
1309         }
1310     }
1311
1312     fn check_expr_struct(
1313         &self,
1314         expr: &hir::Expr<'_>,
1315         expected: Expectation<'tcx>,
1316         qpath: &QPath<'_>,
1317         fields: &'tcx [hir::ExprField<'tcx>],
1318         base_expr: &'tcx Option<&'tcx hir::Expr<'tcx>>,
1319     ) -> Ty<'tcx> {
1320         // Find the relevant variant
1321         let Some((variant, adt_ty)) = self.check_struct_path(qpath, expr.hir_id) else {
1322             self.check_struct_fields_on_error(fields, base_expr);
1323             return self.tcx.ty_error();
1324         };
1325
1326         // Prohibit struct expressions when non-exhaustive flag is set.
1327         let adt = adt_ty.ty_adt_def().expect("`check_struct_path` returned non-ADT type");
1328         if !adt.did.is_local() && variant.is_field_list_non_exhaustive() {
1329             self.tcx
1330                 .sess
1331                 .emit_err(StructExprNonExhaustive { span: expr.span, what: adt.variant_descr() });
1332         }
1333
1334         self.check_expr_struct_fields(
1335             adt_ty,
1336             expected,
1337             expr.hir_id,
1338             qpath.span(),
1339             variant,
1340             fields,
1341             base_expr,
1342             expr.span,
1343         );
1344
1345         self.require_type_is_sized(adt_ty, expr.span, traits::StructInitializerSized);
1346         adt_ty
1347     }
1348
1349     fn check_expr_struct_fields(
1350         &self,
1351         adt_ty: Ty<'tcx>,
1352         expected: Expectation<'tcx>,
1353         expr_id: hir::HirId,
1354         span: Span,
1355         variant: &'tcx ty::VariantDef,
1356         ast_fields: &'tcx [hir::ExprField<'tcx>],
1357         base_expr: &'tcx Option<&'tcx hir::Expr<'tcx>>,
1358         expr_span: Span,
1359     ) {
1360         let tcx = self.tcx;
1361
1362         let adt_ty_hint = self
1363             .expected_inputs_for_expected_output(span, expected, adt_ty, &[adt_ty])
1364             .get(0)
1365             .cloned()
1366             .unwrap_or(adt_ty);
1367         // re-link the regions that EIfEO can erase.
1368         self.demand_eqtype(span, adt_ty_hint, adt_ty);
1369
1370         let (substs, adt_kind, kind_name) = match adt_ty.kind() {
1371             ty::Adt(adt, substs) => (substs, adt.adt_kind(), adt.variant_descr()),
1372             _ => span_bug!(span, "non-ADT passed to check_expr_struct_fields"),
1373         };
1374
1375         let mut remaining_fields = variant
1376             .fields
1377             .iter()
1378             .enumerate()
1379             .map(|(i, field)| (field.ident(tcx).normalize_to_macros_2_0(), (i, field)))
1380             .collect::<FxHashMap<_, _>>();
1381
1382         let mut seen_fields = FxHashMap::default();
1383
1384         let mut error_happened = false;
1385
1386         // Type-check each field.
1387         for field in ast_fields {
1388             let ident = tcx.adjust_ident(field.ident, variant.def_id);
1389             let field_type = if let Some((i, v_field)) = remaining_fields.remove(&ident) {
1390                 seen_fields.insert(ident, field.span);
1391                 self.write_field_index(field.hir_id, i);
1392
1393                 // We don't look at stability attributes on
1394                 // struct-like enums (yet...), but it's definitely not
1395                 // a bug to have constructed one.
1396                 if adt_kind != AdtKind::Enum {
1397                     tcx.check_stability(v_field.did, Some(expr_id), field.span, None);
1398                 }
1399
1400                 self.field_ty(field.span, v_field, substs)
1401             } else {
1402                 error_happened = true;
1403                 if let Some(prev_span) = seen_fields.get(&ident) {
1404                     tcx.sess.emit_err(FieldMultiplySpecifiedInInitializer {
1405                         span: field.ident.span,
1406                         prev_span: *prev_span,
1407                         ident,
1408                     });
1409                 } else {
1410                     self.report_unknown_field(
1411                         adt_ty, variant, field, ast_fields, kind_name, expr_span,
1412                     );
1413                 }
1414
1415                 tcx.ty_error()
1416             };
1417
1418             // Make sure to give a type to the field even if there's
1419             // an error, so we can continue type-checking.
1420             self.check_expr_coercable_to_type(&field.expr, field_type, None);
1421         }
1422
1423         // Make sure the programmer specified correct number of fields.
1424         if kind_name == "union" {
1425             if ast_fields.len() != 1 {
1426                 struct_span_err!(
1427                     tcx.sess,
1428                     span,
1429                     E0784,
1430                     "union expressions should have exactly one field",
1431                 )
1432                 .emit();
1433             }
1434         }
1435
1436         // If check_expr_struct_fields hit an error, do not attempt to populate
1437         // the fields with the base_expr. This could cause us to hit errors later
1438         // when certain fields are assumed to exist that in fact do not.
1439         if error_happened {
1440             return;
1441         }
1442
1443         if let Some(base_expr) = base_expr {
1444             // FIXME: We are currently creating two branches here in order to maintain
1445             // consistency. But they should be merged as much as possible.
1446             let fru_tys = if self.tcx.features().type_changing_struct_update {
1447                 let base_ty = self.check_expr(base_expr);
1448                 match adt_ty.kind() {
1449                     ty::Adt(adt, substs) if adt.is_struct() => {
1450                         match base_ty.kind() {
1451                             ty::Adt(base_adt, base_subs) if adt == base_adt => {
1452                                 variant
1453                                     .fields
1454                                     .iter()
1455                                     .map(|f| {
1456                                         let fru_ty = self.normalize_associated_types_in(
1457                                             expr_span,
1458                                             self.field_ty(base_expr.span, f, base_subs),
1459                                         );
1460                                         let ident = self
1461                                             .tcx
1462                                             .adjust_ident(f.ident(self.tcx), variant.def_id);
1463                                         if let Some(_) = remaining_fields.remove(&ident) {
1464                                             let target_ty =
1465                                                 self.field_ty(base_expr.span, f, substs);
1466                                             let cause = self.misc(base_expr.span);
1467                                             match self
1468                                                 .at(&cause, self.param_env)
1469                                                 .sup(target_ty, fru_ty)
1470                                             {
1471                                                 Ok(InferOk { obligations, value: () }) => {
1472                                                     self.register_predicates(obligations)
1473                                                 }
1474                                                 // FIXME: Need better diagnostics for `FieldMisMatch` error
1475                                                 Err(_) => self
1476                                                     .report_mismatched_types(
1477                                                         &cause,
1478                                                         target_ty,
1479                                                         fru_ty,
1480                                                         FieldMisMatch(variant.name, ident.name),
1481                                                     )
1482                                                     .emit(),
1483                                             }
1484                                         }
1485                                         fru_ty
1486                                     })
1487                                     .collect()
1488                             }
1489                             _ => {
1490                                 return self
1491                                     .report_mismatched_types(
1492                                         &self.misc(base_expr.span),
1493                                         adt_ty,
1494                                         base_ty,
1495                                         Sorts(ExpectedFound::new(true, adt_ty, base_ty)),
1496                                     )
1497                                     .emit();
1498                             }
1499                         }
1500                     }
1501                     _ => {
1502                         return self
1503                             .tcx
1504                             .sess
1505                             .emit_err(FunctionalRecordUpdateOnNonStruct { span: base_expr.span });
1506                     }
1507                 }
1508             } else {
1509                 self.check_expr_has_type_or_error(base_expr, adt_ty, |_| {
1510                     let base_ty = self.typeck_results.borrow().node_type(base_expr.hir_id);
1511                     let same_adt = match (adt_ty.kind(), base_ty.kind()) {
1512                         (ty::Adt(adt, _), ty::Adt(base_adt, _)) if adt == base_adt => true,
1513                         _ => false,
1514                     };
1515                     if self.tcx.sess.is_nightly_build() && same_adt {
1516                         feature_err(
1517                             &self.tcx.sess.parse_sess,
1518                             sym::type_changing_struct_update,
1519                             base_expr.span,
1520                             "type changing struct updating is experimental",
1521                         )
1522                         .emit();
1523                     }
1524                 });
1525                 match adt_ty.kind() {
1526                     ty::Adt(adt, substs) if adt.is_struct() => variant
1527                         .fields
1528                         .iter()
1529                         .map(|f| {
1530                             self.normalize_associated_types_in(expr_span, f.ty(self.tcx, substs))
1531                         })
1532                         .collect(),
1533                     _ => {
1534                         return self
1535                             .tcx
1536                             .sess
1537                             .emit_err(FunctionalRecordUpdateOnNonStruct { span: base_expr.span });
1538                     }
1539                 }
1540             };
1541             self.typeck_results.borrow_mut().fru_field_types_mut().insert(expr_id, fru_tys);
1542         } else if kind_name != "union" && !remaining_fields.is_empty() {
1543             let inaccessible_remaining_fields = remaining_fields.iter().any(|(_, (_, field))| {
1544                 !field.vis.is_accessible_from(tcx.parent_module(expr_id).to_def_id(), tcx)
1545             });
1546
1547             if inaccessible_remaining_fields {
1548                 self.report_inaccessible_fields(adt_ty, span);
1549             } else {
1550                 self.report_missing_fields(adt_ty, span, remaining_fields);
1551             }
1552         }
1553     }
1554
1555     fn check_struct_fields_on_error(
1556         &self,
1557         fields: &'tcx [hir::ExprField<'tcx>],
1558         base_expr: &'tcx Option<&'tcx hir::Expr<'tcx>>,
1559     ) {
1560         for field in fields {
1561             self.check_expr(&field.expr);
1562         }
1563         if let Some(base) = *base_expr {
1564             self.check_expr(&base);
1565         }
1566     }
1567
1568     /// Report an error for a struct field expression when there are fields which aren't provided.
1569     ///
1570     /// ```text
1571     /// error: missing field `you_can_use_this_field` in initializer of `foo::Foo`
1572     ///  --> src/main.rs:8:5
1573     ///   |
1574     /// 8 |     foo::Foo {};
1575     ///   |     ^^^^^^^^ missing `you_can_use_this_field`
1576     ///
1577     /// error: aborting due to previous error
1578     /// ```
1579     fn report_missing_fields(
1580         &self,
1581         adt_ty: Ty<'tcx>,
1582         span: Span,
1583         remaining_fields: FxHashMap<Ident, (usize, &ty::FieldDef)>,
1584     ) {
1585         let len = remaining_fields.len();
1586
1587         let mut displayable_field_names: Vec<&str> =
1588             remaining_fields.keys().map(|ident| ident.as_str()).collect();
1589         // sorting &str primitives here, sort_unstable is ok
1590         displayable_field_names.sort_unstable();
1591
1592         let mut truncated_fields_error = String::new();
1593         let remaining_fields_names = match &displayable_field_names[..] {
1594             [field1] => format!("`{}`", field1),
1595             [field1, field2] => format!("`{}` and `{}`", field1, field2),
1596             [field1, field2, field3] => format!("`{}`, `{}` and `{}`", field1, field2, field3),
1597             _ => {
1598                 truncated_fields_error =
1599                     format!(" and {} other field{}", len - 3, pluralize!(len - 3));
1600                 displayable_field_names
1601                     .iter()
1602                     .take(3)
1603                     .map(|n| format!("`{}`", n))
1604                     .collect::<Vec<_>>()
1605                     .join(", ")
1606             }
1607         };
1608
1609         struct_span_err!(
1610             self.tcx.sess,
1611             span,
1612             E0063,
1613             "missing field{} {}{} in initializer of `{}`",
1614             pluralize!(len),
1615             remaining_fields_names,
1616             truncated_fields_error,
1617             adt_ty
1618         )
1619         .span_label(span, format!("missing {}{}", remaining_fields_names, truncated_fields_error))
1620         .emit();
1621     }
1622
1623     /// Report an error for a struct field expression when there are invisible fields.
1624     ///
1625     /// ```text
1626     /// error: cannot construct `Foo` with struct literal syntax due to inaccessible fields
1627     ///  --> src/main.rs:8:5
1628     ///   |
1629     /// 8 |     foo::Foo {};
1630     ///   |     ^^^^^^^^
1631     ///
1632     /// error: aborting due to previous error
1633     /// ```
1634     fn report_inaccessible_fields(&self, adt_ty: Ty<'tcx>, span: Span) {
1635         self.tcx.sess.span_err(
1636             span,
1637             &format!(
1638                 "cannot construct `{}` with struct literal syntax due to inaccessible fields",
1639                 adt_ty,
1640             ),
1641         );
1642     }
1643
1644     fn report_unknown_field(
1645         &self,
1646         ty: Ty<'tcx>,
1647         variant: &'tcx ty::VariantDef,
1648         field: &hir::ExprField<'_>,
1649         skip_fields: &[hir::ExprField<'_>],
1650         kind_name: &str,
1651         expr_span: Span,
1652     ) {
1653         if variant.is_recovered() {
1654             self.set_tainted_by_errors();
1655             return;
1656         }
1657         let mut err = self.type_error_struct_with_diag(
1658             field.ident.span,
1659             |actual| match ty.kind() {
1660                 ty::Adt(adt, ..) if adt.is_enum() => struct_span_err!(
1661                     self.tcx.sess,
1662                     field.ident.span,
1663                     E0559,
1664                     "{} `{}::{}` has no field named `{}`",
1665                     kind_name,
1666                     actual,
1667                     variant.name,
1668                     field.ident
1669                 ),
1670                 _ => struct_span_err!(
1671                     self.tcx.sess,
1672                     field.ident.span,
1673                     E0560,
1674                     "{} `{}` has no field named `{}`",
1675                     kind_name,
1676                     actual,
1677                     field.ident
1678                 ),
1679             },
1680             ty,
1681         );
1682
1683         let variant_ident_span = self.tcx.def_ident_span(variant.def_id).unwrap();
1684         match variant.ctor_kind {
1685             CtorKind::Fn => match ty.kind() {
1686                 ty::Adt(adt, ..) if adt.is_enum() => {
1687                     err.span_label(
1688                         variant_ident_span,
1689                         format!(
1690                             "`{adt}::{variant}` defined here",
1691                             adt = ty,
1692                             variant = variant.name,
1693                         ),
1694                     );
1695                     err.span_label(field.ident.span, "field does not exist");
1696                     err.span_suggestion_verbose(
1697                         expr_span,
1698                         &format!(
1699                             "`{adt}::{variant}` is a tuple {kind_name}, use the appropriate syntax",
1700                             adt = ty,
1701                             variant = variant.name,
1702                         ),
1703                         format!(
1704                             "{adt}::{variant}(/* fields */)",
1705                             adt = ty,
1706                             variant = variant.name,
1707                         ),
1708                         Applicability::HasPlaceholders,
1709                     );
1710                 }
1711                 _ => {
1712                     err.span_label(variant_ident_span, format!("`{adt}` defined here", adt = ty));
1713                     err.span_label(field.ident.span, "field does not exist");
1714                     err.span_suggestion_verbose(
1715                         expr_span,
1716                         &format!(
1717                             "`{adt}` is a tuple {kind_name}, use the appropriate syntax",
1718                             adt = ty,
1719                             kind_name = kind_name,
1720                         ),
1721                         format!("{adt}(/* fields */)", adt = ty),
1722                         Applicability::HasPlaceholders,
1723                     );
1724                 }
1725             },
1726             _ => {
1727                 // prevent all specified fields from being suggested
1728                 let skip_fields = skip_fields.iter().map(|x| x.ident.name);
1729                 if let Some(field_name) = self.suggest_field_name(
1730                     variant,
1731                     field.ident.name,
1732                     skip_fields.collect(),
1733                     expr_span,
1734                 ) {
1735                     err.span_suggestion(
1736                         field.ident.span,
1737                         "a field with a similar name exists",
1738                         field_name.to_string(),
1739                         Applicability::MaybeIncorrect,
1740                     );
1741                 } else {
1742                     match ty.kind() {
1743                         ty::Adt(adt, ..) => {
1744                             if adt.is_enum() {
1745                                 err.span_label(
1746                                     field.ident.span,
1747                                     format!("`{}::{}` does not have this field", ty, variant.name),
1748                                 );
1749                             } else {
1750                                 err.span_label(
1751                                     field.ident.span,
1752                                     format!("`{}` does not have this field", ty),
1753                                 );
1754                             }
1755                             let available_field_names =
1756                                 self.available_field_names(variant, expr_span);
1757                             if !available_field_names.is_empty() {
1758                                 err.note(&format!(
1759                                     "available fields are: {}",
1760                                     self.name_series_display(available_field_names)
1761                                 ));
1762                             }
1763                         }
1764                         _ => bug!("non-ADT passed to report_unknown_field"),
1765                     }
1766                 };
1767             }
1768         }
1769         err.emit();
1770     }
1771
1772     // Return a hint about the closest match in field names
1773     fn suggest_field_name(
1774         &self,
1775         variant: &'tcx ty::VariantDef,
1776         field: Symbol,
1777         skip: Vec<Symbol>,
1778         // The span where stability will be checked
1779         span: Span,
1780     ) -> Option<Symbol> {
1781         let names = variant
1782             .fields
1783             .iter()
1784             .filter_map(|field| {
1785                 // ignore already set fields and private fields from non-local crates
1786                 // and unstable fields.
1787                 if skip.iter().any(|&x| x == field.name)
1788                     || (!variant.def_id.is_local() && !field.vis.is_public())
1789                     || matches!(
1790                         self.tcx.eval_stability(field.did, None, span, None),
1791                         stability::EvalResult::Deny { .. }
1792                     )
1793                 {
1794                     None
1795                 } else {
1796                     Some(field.name)
1797                 }
1798             })
1799             .collect::<Vec<Symbol>>();
1800
1801         find_best_match_for_name(&names, field, None)
1802     }
1803
1804     fn available_field_names(
1805         &self,
1806         variant: &'tcx ty::VariantDef,
1807         access_span: Span,
1808     ) -> Vec<Symbol> {
1809         variant
1810             .fields
1811             .iter()
1812             .filter(|field| {
1813                 let def_scope = self
1814                     .tcx
1815                     .adjust_ident_and_get_scope(field.ident(self.tcx), variant.def_id, self.body_id)
1816                     .1;
1817                 field.vis.is_accessible_from(def_scope, self.tcx)
1818                     && !matches!(
1819                         self.tcx.eval_stability(field.did, None, access_span, None),
1820                         stability::EvalResult::Deny { .. }
1821                     )
1822             })
1823             .filter(|field| !self.tcx.is_doc_hidden(field.did))
1824             .map(|field| field.name)
1825             .collect()
1826     }
1827
1828     fn name_series_display(&self, names: Vec<Symbol>) -> String {
1829         // dynamic limit, to never omit just one field
1830         let limit = if names.len() == 6 { 6 } else { 5 };
1831         let mut display =
1832             names.iter().take(limit).map(|n| format!("`{}`", n)).collect::<Vec<_>>().join(", ");
1833         if names.len() > limit {
1834             display = format!("{} ... and {} others", display, names.len() - limit);
1835         }
1836         display
1837     }
1838
1839     // Check field access expressions
1840     fn check_field(
1841         &self,
1842         expr: &'tcx hir::Expr<'tcx>,
1843         base: &'tcx hir::Expr<'tcx>,
1844         field: Ident,
1845     ) -> Ty<'tcx> {
1846         debug!("check_field(expr: {:?}, base: {:?}, field: {:?})", expr, base, field);
1847         let expr_t = self.check_expr(base);
1848         let expr_t = self.structurally_resolved_type(base.span, expr_t);
1849         let mut private_candidate = None;
1850         let mut autoderef = self.autoderef(expr.span, expr_t);
1851         while let Some((base_t, _)) = autoderef.next() {
1852             debug!("base_t: {:?}", base_t);
1853             match base_t.kind() {
1854                 ty::Adt(base_def, substs) if !base_def.is_enum() => {
1855                     debug!("struct named {:?}", base_t);
1856                     let (ident, def_scope) =
1857                         self.tcx.adjust_ident_and_get_scope(field, base_def.did, self.body_id);
1858                     let fields = &base_def.non_enum_variant().fields;
1859                     if let Some(index) = fields
1860                         .iter()
1861                         .position(|f| f.ident(self.tcx).normalize_to_macros_2_0() == ident)
1862                     {
1863                         let field = &fields[index];
1864                         let field_ty = self.field_ty(expr.span, field, substs);
1865                         // Save the index of all fields regardless of their visibility in case
1866                         // of error recovery.
1867                         self.write_field_index(expr.hir_id, index);
1868                         let adjustments = self.adjust_steps(&autoderef);
1869                         if field.vis.is_accessible_from(def_scope, self.tcx) {
1870                             self.apply_adjustments(base, adjustments);
1871                             self.register_predicates(autoderef.into_obligations());
1872
1873                             self.tcx.check_stability(field.did, Some(expr.hir_id), expr.span, None);
1874                             return field_ty;
1875                         }
1876                         private_candidate = Some((adjustments, base_def.did, field_ty));
1877                     }
1878                 }
1879                 ty::Tuple(tys) => {
1880                     let fstr = field.as_str();
1881                     if let Ok(index) = fstr.parse::<usize>() {
1882                         if fstr == index.to_string() {
1883                             if let Some(field_ty) = tys.get(index) {
1884                                 let adjustments = self.adjust_steps(&autoderef);
1885                                 self.apply_adjustments(base, adjustments);
1886                                 self.register_predicates(autoderef.into_obligations());
1887
1888                                 self.write_field_index(expr.hir_id, index);
1889                                 return field_ty.expect_ty();
1890                             }
1891                         }
1892                     }
1893                 }
1894                 _ => {}
1895             }
1896         }
1897         self.structurally_resolved_type(autoderef.span(), autoderef.final_ty(false));
1898
1899         if let Some((adjustments, did, field_ty)) = private_candidate {
1900             // (#90483) apply adjustments to avoid ExprUseVisitor from
1901             // creating erroneous projection.
1902             self.apply_adjustments(base, adjustments);
1903             self.ban_private_field_access(expr, expr_t, field, did);
1904             return field_ty;
1905         }
1906
1907         if field.name == kw::Empty {
1908         } else if self.method_exists(field, expr_t, expr.hir_id, true) {
1909             self.ban_take_value_of_method(expr, expr_t, field);
1910         } else if !expr_t.is_primitive_ty() {
1911             self.ban_nonexisting_field(field, base, expr, expr_t);
1912         } else {
1913             type_error_struct!(
1914                 self.tcx().sess,
1915                 field.span,
1916                 expr_t,
1917                 E0610,
1918                 "`{}` is a primitive type and therefore doesn't have fields",
1919                 expr_t
1920             )
1921             .emit();
1922         }
1923
1924         self.tcx().ty_error()
1925     }
1926
1927     fn suggest_await_on_field_access(
1928         &self,
1929         err: &mut DiagnosticBuilder<'_>,
1930         field_ident: Ident,
1931         base: &'tcx hir::Expr<'tcx>,
1932         ty: Ty<'tcx>,
1933     ) {
1934         let output_ty = match self.infcx.get_impl_future_output_ty(ty) {
1935             Some(output_ty) => self.resolve_vars_if_possible(output_ty),
1936             _ => return,
1937         };
1938         let mut add_label = true;
1939         if let ty::Adt(def, _) = output_ty.skip_binder().kind() {
1940             // no field access on enum type
1941             if !def.is_enum() {
1942                 if def
1943                     .non_enum_variant()
1944                     .fields
1945                     .iter()
1946                     .any(|field| field.ident(self.tcx) == field_ident)
1947                 {
1948                     add_label = false;
1949                     err.span_label(
1950                         field_ident.span,
1951                         "field not available in `impl Future`, but it is available in its `Output`",
1952                     );
1953                     err.span_suggestion_verbose(
1954                         base.span.shrink_to_hi(),
1955                         "consider `await`ing on the `Future` and access the field of its `Output`",
1956                         ".await".to_string(),
1957                         Applicability::MaybeIncorrect,
1958                     );
1959                 }
1960             }
1961         }
1962         if add_label {
1963             err.span_label(field_ident.span, &format!("field not found in `{}`", ty));
1964         }
1965     }
1966
1967     fn ban_nonexisting_field(
1968         &self,
1969         field: Ident,
1970         base: &'tcx hir::Expr<'tcx>,
1971         expr: &'tcx hir::Expr<'tcx>,
1972         expr_t: Ty<'tcx>,
1973     ) {
1974         debug!(
1975             "ban_nonexisting_field: field={:?}, base={:?}, expr={:?}, expr_ty={:?}",
1976             field, base, expr, expr_t
1977         );
1978         let mut err = self.no_such_field_err(field, expr_t, base.hir_id);
1979
1980         match *expr_t.peel_refs().kind() {
1981             ty::Array(_, len) => {
1982                 self.maybe_suggest_array_indexing(&mut err, expr, base, field, len);
1983             }
1984             ty::RawPtr(..) => {
1985                 self.suggest_first_deref_field(&mut err, expr, base, field);
1986             }
1987             ty::Adt(def, _) if !def.is_enum() => {
1988                 self.suggest_fields_on_recordish(&mut err, def, field, expr.span);
1989             }
1990             ty::Param(param_ty) => {
1991                 self.point_at_param_definition(&mut err, param_ty);
1992             }
1993             ty::Opaque(_, _) => {
1994                 self.suggest_await_on_field_access(&mut err, field, base, expr_t.peel_refs());
1995             }
1996             _ => {}
1997         }
1998
1999         if field.name == kw::Await {
2000             // We know by construction that `<expr>.await` is either on Rust 2015
2001             // or results in `ExprKind::Await`. Suggest switching the edition to 2018.
2002             err.note("to `.await` a `Future`, switch to Rust 2018 or later");
2003             err.help(&format!("set `edition = \"{}\"` in `Cargo.toml`", LATEST_STABLE_EDITION));
2004             err.note("for more on editions, read https://doc.rust-lang.org/edition-guide");
2005         }
2006
2007         err.emit();
2008     }
2009
2010     fn ban_private_field_access(
2011         &self,
2012         expr: &hir::Expr<'_>,
2013         expr_t: Ty<'tcx>,
2014         field: Ident,
2015         base_did: DefId,
2016     ) {
2017         let struct_path = self.tcx().def_path_str(base_did);
2018         let kind_name = self.tcx().def_kind(base_did).descr(base_did);
2019         let mut err = struct_span_err!(
2020             self.tcx().sess,
2021             field.span,
2022             E0616,
2023             "field `{}` of {} `{}` is private",
2024             field,
2025             kind_name,
2026             struct_path
2027         );
2028         err.span_label(field.span, "private field");
2029         // Also check if an accessible method exists, which is often what is meant.
2030         if self.method_exists(field, expr_t, expr.hir_id, false) && !self.expr_in_place(expr.hir_id)
2031         {
2032             self.suggest_method_call(
2033                 &mut err,
2034                 &format!("a method `{}` also exists, call it with parentheses", field),
2035                 field,
2036                 expr_t,
2037                 expr,
2038                 None,
2039             );
2040         }
2041         err.emit();
2042     }
2043
2044     fn ban_take_value_of_method(&self, expr: &hir::Expr<'_>, expr_t: Ty<'tcx>, field: Ident) {
2045         let mut err = type_error_struct!(
2046             self.tcx().sess,
2047             field.span,
2048             expr_t,
2049             E0615,
2050             "attempted to take value of method `{}` on type `{}`",
2051             field,
2052             expr_t
2053         );
2054         err.span_label(field.span, "method, not a field");
2055         let expr_is_call =
2056             if let hir::Node::Expr(hir::Expr { kind: ExprKind::Call(callee, _args), .. }) =
2057                 self.tcx.hir().get(self.tcx.hir().get_parent_node(expr.hir_id))
2058             {
2059                 expr.hir_id == callee.hir_id
2060             } else {
2061                 false
2062             };
2063         let expr_snippet =
2064             self.tcx.sess.source_map().span_to_snippet(expr.span).unwrap_or(String::new());
2065         let is_wrapped = expr_snippet.starts_with('(') && expr_snippet.ends_with(')');
2066         let after_open = expr.span.lo() + rustc_span::BytePos(1);
2067         let before_close = expr.span.hi() - rustc_span::BytePos(1);
2068
2069         if expr_is_call && is_wrapped {
2070             err.multipart_suggestion(
2071                 "remove wrapping parentheses to call the method",
2072                 vec![
2073                     (expr.span.with_hi(after_open), String::new()),
2074                     (expr.span.with_lo(before_close), String::new()),
2075                 ],
2076                 Applicability::MachineApplicable,
2077             );
2078         } else if !self.expr_in_place(expr.hir_id) {
2079             // Suggest call parentheses inside the wrapping parentheses
2080             let span = if is_wrapped {
2081                 expr.span.with_lo(after_open).with_hi(before_close)
2082             } else {
2083                 expr.span
2084             };
2085             self.suggest_method_call(
2086                 &mut err,
2087                 "use parentheses to call the method",
2088                 field,
2089                 expr_t,
2090                 expr,
2091                 Some(span),
2092             );
2093         } else {
2094             let mut found = false;
2095
2096             if let ty::RawPtr(ty_and_mut) = expr_t.kind() {
2097                 if let ty::Adt(adt_def, _) = ty_and_mut.ty.kind() {
2098                     if adt_def.variants.len() == 1
2099                         && adt_def
2100                             .variants
2101                             .iter()
2102                             .next()
2103                             .unwrap()
2104                             .fields
2105                             .iter()
2106                             .any(|f| f.ident(self.tcx) == field)
2107                     {
2108                         if let Some(dot_loc) = expr_snippet.rfind('.') {
2109                             found = true;
2110                             err.span_suggestion(
2111                                 expr.span.with_hi(expr.span.lo() + BytePos::from_usize(dot_loc)),
2112                                 "to access the field, dereference first",
2113                                 format!("(*{})", &expr_snippet[0..dot_loc]),
2114                                 Applicability::MaybeIncorrect,
2115                             );
2116                         }
2117                     }
2118                 }
2119             }
2120
2121             if !found {
2122                 err.help("methods are immutable and cannot be assigned to");
2123             }
2124         }
2125
2126         err.emit();
2127     }
2128
2129     fn point_at_param_definition(&self, err: &mut DiagnosticBuilder<'_>, param: ty::ParamTy) {
2130         let generics = self.tcx.generics_of(self.body_id.owner.to_def_id());
2131         let generic_param = generics.type_param(&param, self.tcx);
2132         if let ty::GenericParamDefKind::Type { synthetic: true, .. } = generic_param.kind {
2133             return;
2134         }
2135         let param_def_id = generic_param.def_id;
2136         let param_hir_id = match param_def_id.as_local() {
2137             Some(x) => self.tcx.hir().local_def_id_to_hir_id(x),
2138             None => return,
2139         };
2140         let param_span = self.tcx.hir().span(param_hir_id);
2141         let param_name = self.tcx.hir().ty_param_name(param_hir_id);
2142
2143         err.span_label(param_span, &format!("type parameter '{}' declared here", param_name));
2144     }
2145
2146     fn suggest_fields_on_recordish(
2147         &self,
2148         err: &mut DiagnosticBuilder<'_>,
2149         def: &'tcx ty::AdtDef,
2150         field: Ident,
2151         access_span: Span,
2152     ) {
2153         if let Some(suggested_field_name) =
2154             self.suggest_field_name(def.non_enum_variant(), field.name, vec![], access_span)
2155         {
2156             err.span_suggestion(
2157                 field.span,
2158                 "a field with a similar name exists",
2159                 suggested_field_name.to_string(),
2160                 Applicability::MaybeIncorrect,
2161             );
2162         } else {
2163             err.span_label(field.span, "unknown field");
2164             let struct_variant_def = def.non_enum_variant();
2165             let field_names = self.available_field_names(struct_variant_def, access_span);
2166             if !field_names.is_empty() {
2167                 err.note(&format!(
2168                     "available fields are: {}",
2169                     self.name_series_display(field_names),
2170                 ));
2171             }
2172         }
2173     }
2174
2175     fn maybe_suggest_array_indexing(
2176         &self,
2177         err: &mut DiagnosticBuilder<'_>,
2178         expr: &hir::Expr<'_>,
2179         base: &hir::Expr<'_>,
2180         field: Ident,
2181         len: ty::Const<'tcx>,
2182     ) {
2183         if let (Some(len), Ok(user_index)) =
2184             (len.try_eval_usize(self.tcx, self.param_env), field.as_str().parse::<u64>())
2185         {
2186             if let Ok(base) = self.tcx.sess.source_map().span_to_snippet(base.span) {
2187                 let help = "instead of using tuple indexing, use array indexing";
2188                 let suggestion = format!("{}[{}]", base, field);
2189                 let applicability = if len < user_index {
2190                     Applicability::MachineApplicable
2191                 } else {
2192                     Applicability::MaybeIncorrect
2193                 };
2194                 err.span_suggestion(expr.span, help, suggestion, applicability);
2195             }
2196         }
2197     }
2198
2199     fn suggest_first_deref_field(
2200         &self,
2201         err: &mut DiagnosticBuilder<'_>,
2202         expr: &hir::Expr<'_>,
2203         base: &hir::Expr<'_>,
2204         field: Ident,
2205     ) {
2206         if let Ok(base) = self.tcx.sess.source_map().span_to_snippet(base.span) {
2207             let msg = format!("`{}` is a raw pointer; try dereferencing it", base);
2208             let suggestion = format!("(*{}).{}", base, field);
2209             err.span_suggestion(expr.span, &msg, suggestion, Applicability::MaybeIncorrect);
2210         }
2211     }
2212
2213     fn no_such_field_err(
2214         &self,
2215         field: Ident,
2216         expr_t: Ty<'tcx>,
2217         id: HirId,
2218     ) -> DiagnosticBuilder<'_> {
2219         let span = field.span;
2220         debug!("no_such_field_err(span: {:?}, field: {:?}, expr_t: {:?})", span, field, expr_t);
2221
2222         let mut err = type_error_struct!(
2223             self.tcx().sess,
2224             field.span,
2225             expr_t,
2226             E0609,
2227             "no field `{}` on type `{}`",
2228             field,
2229             expr_t
2230         );
2231
2232         // try to add a suggestion in case the field is a nested field of a field of the Adt
2233         if let Some((fields, substs)) = self.get_field_candidates(span, expr_t) {
2234             for candidate_field in fields.iter() {
2235                 if let Some(field_path) = self.check_for_nested_field(
2236                     span,
2237                     field,
2238                     candidate_field,
2239                     substs,
2240                     vec![],
2241                     self.tcx.parent_module(id).to_def_id(),
2242                 ) {
2243                     let field_path_str = field_path
2244                         .iter()
2245                         .map(|id| id.name.to_ident_string())
2246                         .collect::<Vec<String>>()
2247                         .join(".");
2248                     debug!("field_path_str: {:?}", field_path_str);
2249
2250                     err.span_suggestion_verbose(
2251                         field.span.shrink_to_lo(),
2252                         "one of the expressions' fields has a field of the same name",
2253                         format!("{}.", field_path_str),
2254                         Applicability::MaybeIncorrect,
2255                     );
2256                 }
2257             }
2258         }
2259         err
2260     }
2261
2262     fn get_field_candidates(
2263         &self,
2264         span: Span,
2265         base_t: Ty<'tcx>,
2266     ) -> Option<(&Vec<ty::FieldDef>, SubstsRef<'tcx>)> {
2267         debug!("get_field_candidates(span: {:?}, base_t: {:?}", span, base_t);
2268
2269         for (base_t, _) in self.autoderef(span, base_t) {
2270             match base_t.kind() {
2271                 ty::Adt(base_def, substs) if !base_def.is_enum() => {
2272                     let fields = &base_def.non_enum_variant().fields;
2273                     // For compile-time reasons put a limit on number of fields we search
2274                     if fields.len() > 100 {
2275                         return None;
2276                     }
2277                     return Some((fields, substs));
2278                 }
2279                 _ => {}
2280             }
2281         }
2282         None
2283     }
2284
2285     /// This method is called after we have encountered a missing field error to recursively
2286     /// search for the field
2287     fn check_for_nested_field(
2288         &self,
2289         span: Span,
2290         target_field: Ident,
2291         candidate_field: &ty::FieldDef,
2292         subst: SubstsRef<'tcx>,
2293         mut field_path: Vec<Ident>,
2294         id: DefId,
2295     ) -> Option<Vec<Ident>> {
2296         debug!(
2297             "check_for_nested_field(span: {:?}, candidate_field: {:?}, field_path: {:?}",
2298             span, candidate_field, field_path
2299         );
2300
2301         if candidate_field.ident(self.tcx) == target_field {
2302             Some(field_path)
2303         } else if field_path.len() > 3 {
2304             // For compile-time reasons and to avoid infinite recursion we only check for fields
2305             // up to a depth of three
2306             None
2307         } else {
2308             // recursively search fields of `candidate_field` if it's a ty::Adt
2309
2310             field_path.push(candidate_field.ident(self.tcx).normalize_to_macros_2_0());
2311             let field_ty = candidate_field.ty(self.tcx, subst);
2312             if let Some((nested_fields, subst)) = self.get_field_candidates(span, field_ty) {
2313                 for field in nested_fields.iter() {
2314                     let accessible = field.vis.is_accessible_from(id, self.tcx);
2315                     if accessible {
2316                         let ident = field.ident(self.tcx).normalize_to_macros_2_0();
2317                         if ident == target_field {
2318                             return Some(field_path);
2319                         }
2320                         let field_path = field_path.clone();
2321                         if let Some(path) = self.check_for_nested_field(
2322                             span,
2323                             target_field,
2324                             field,
2325                             subst,
2326                             field_path,
2327                             id,
2328                         ) {
2329                             return Some(path);
2330                         }
2331                     }
2332                 }
2333             }
2334             None
2335         }
2336     }
2337
2338     fn check_expr_index(
2339         &self,
2340         base: &'tcx hir::Expr<'tcx>,
2341         idx: &'tcx hir::Expr<'tcx>,
2342         expr: &'tcx hir::Expr<'tcx>,
2343     ) -> Ty<'tcx> {
2344         let base_t = self.check_expr(&base);
2345         let idx_t = self.check_expr(&idx);
2346
2347         if base_t.references_error() {
2348             base_t
2349         } else if idx_t.references_error() {
2350             idx_t
2351         } else {
2352             let base_t = self.structurally_resolved_type(base.span, base_t);
2353             match self.lookup_indexing(expr, base, base_t, idx, idx_t) {
2354                 Some((index_ty, element_ty)) => {
2355                     // two-phase not needed because index_ty is never mutable
2356                     self.demand_coerce(idx, idx_t, index_ty, None, AllowTwoPhase::No);
2357                     element_ty
2358                 }
2359                 None => {
2360                     let mut err = type_error_struct!(
2361                         self.tcx.sess,
2362                         expr.span,
2363                         base_t,
2364                         E0608,
2365                         "cannot index into a value of type `{}`",
2366                         base_t
2367                     );
2368                     // Try to give some advice about indexing tuples.
2369                     if let ty::Tuple(..) = base_t.kind() {
2370                         let mut needs_note = true;
2371                         // If the index is an integer, we can show the actual
2372                         // fixed expression:
2373                         if let ExprKind::Lit(ref lit) = idx.kind {
2374                             if let ast::LitKind::Int(i, ast::LitIntType::Unsuffixed) = lit.node {
2375                                 let snip = self.tcx.sess.source_map().span_to_snippet(base.span);
2376                                 if let Ok(snip) = snip {
2377                                     err.span_suggestion(
2378                                         expr.span,
2379                                         "to access tuple elements, use",
2380                                         format!("{}.{}", snip, i),
2381                                         Applicability::MachineApplicable,
2382                                     );
2383                                     needs_note = false;
2384                                 }
2385                             }
2386                         }
2387                         if needs_note {
2388                             err.help(
2389                                 "to access tuple elements, use tuple indexing \
2390                                         syntax (e.g., `tuple.0`)",
2391                             );
2392                         }
2393                     }
2394                     err.emit();
2395                     self.tcx.ty_error()
2396                 }
2397             }
2398         }
2399     }
2400
2401     fn check_expr_yield(
2402         &self,
2403         value: &'tcx hir::Expr<'tcx>,
2404         expr: &'tcx hir::Expr<'tcx>,
2405         src: &'tcx hir::YieldSource,
2406     ) -> Ty<'tcx> {
2407         match self.resume_yield_tys {
2408             Some((resume_ty, yield_ty)) => {
2409                 self.check_expr_coercable_to_type(&value, yield_ty, None);
2410
2411                 resume_ty
2412             }
2413             // Given that this `yield` expression was generated as a result of lowering a `.await`,
2414             // we know that the yield type must be `()`; however, the context won't contain this
2415             // information. Hence, we check the source of the yield expression here and check its
2416             // value's type against `()` (this check should always hold).
2417             None if src.is_await() => {
2418                 self.check_expr_coercable_to_type(&value, self.tcx.mk_unit(), None);
2419                 self.tcx.mk_unit()
2420             }
2421             _ => {
2422                 self.tcx.sess.emit_err(YieldExprOutsideOfGenerator { span: expr.span });
2423                 // Avoid expressions without types during writeback (#78653).
2424                 self.check_expr(value);
2425                 self.tcx.mk_unit()
2426             }
2427         }
2428     }
2429
2430     fn check_expr_asm_operand(&self, expr: &'tcx hir::Expr<'tcx>, is_input: bool) {
2431         let needs = if is_input { Needs::None } else { Needs::MutPlace };
2432         let ty = self.check_expr_with_needs(expr, needs);
2433         self.require_type_is_sized(ty, expr.span, traits::InlineAsmSized);
2434
2435         if !is_input && !expr.is_syntactic_place_expr() {
2436             let mut err = self.tcx.sess.struct_span_err(expr.span, "invalid asm output");
2437             err.span_label(expr.span, "cannot assign to this expression");
2438             err.emit();
2439         }
2440
2441         // If this is an input value, we require its type to be fully resolved
2442         // at this point. This allows us to provide helpful coercions which help
2443         // pass the type candidate list in a later pass.
2444         //
2445         // We don't require output types to be resolved at this point, which
2446         // allows them to be inferred based on how they are used later in the
2447         // function.
2448         if is_input {
2449             let ty = self.structurally_resolved_type(expr.span, ty);
2450             match *ty.kind() {
2451                 ty::FnDef(..) => {
2452                     let fnptr_ty = self.tcx.mk_fn_ptr(ty.fn_sig(self.tcx));
2453                     self.demand_coerce(expr, ty, fnptr_ty, None, AllowTwoPhase::No);
2454                 }
2455                 ty::Ref(_, base_ty, mutbl) => {
2456                     let ptr_ty = self.tcx.mk_ptr(ty::TypeAndMut { ty: base_ty, mutbl });
2457                     self.demand_coerce(expr, ty, ptr_ty, None, AllowTwoPhase::No);
2458                 }
2459                 _ => {}
2460             }
2461         }
2462     }
2463
2464     fn check_expr_asm(&self, asm: &'tcx hir::InlineAsm<'tcx>) -> Ty<'tcx> {
2465         for (op, _op_sp) in asm.operands {
2466             match op {
2467                 hir::InlineAsmOperand::In { expr, .. } => {
2468                     self.check_expr_asm_operand(expr, true);
2469                 }
2470                 hir::InlineAsmOperand::Out { expr: Some(expr), .. }
2471                 | hir::InlineAsmOperand::InOut { expr, .. } => {
2472                     self.check_expr_asm_operand(expr, false);
2473                 }
2474                 hir::InlineAsmOperand::Out { expr: None, .. } => {}
2475                 hir::InlineAsmOperand::SplitInOut { in_expr, out_expr, .. } => {
2476                     self.check_expr_asm_operand(in_expr, true);
2477                     if let Some(out_expr) = out_expr {
2478                         self.check_expr_asm_operand(out_expr, false);
2479                     }
2480                 }
2481                 hir::InlineAsmOperand::Const { anon_const } => {
2482                     self.to_const(anon_const);
2483                 }
2484                 hir::InlineAsmOperand::Sym { expr } => {
2485                     self.check_expr(expr);
2486                 }
2487             }
2488         }
2489         if asm.options.contains(ast::InlineAsmOptions::NORETURN) {
2490             self.tcx.types.never
2491         } else {
2492             self.tcx.mk_unit()
2493         }
2494     }
2495 }
2496
2497 pub(super) fn ty_kind_suggestion(ty: Ty<'_>) -> Option<&'static str> {
2498     Some(match ty.kind() {
2499         ty::Bool => "true",
2500         ty::Char => "'a'",
2501         ty::Int(_) | ty::Uint(_) => "42",
2502         ty::Float(_) => "3.14159",
2503         ty::Error(_) | ty::Never => return None,
2504         _ => "value",
2505     })
2506 }