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