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