]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_hir_typeck/src/expr.rs
Rollup merge of #105141 - ohno418:fix-ice-on-invalid-var-decl-in-macro-call, r=compil...
[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.suggest_assoc_method_call(segs);
532                 let e =
533                     self.tcx.sess.delay_span_bug(qpath.span(), "`Res::Err` but no error emitted");
534                 self.set_tainted_by_errors(e);
535                 tcx.ty_error_with_guaranteed(e)
536             }
537             Res::Def(DefKind::Variant, _) => {
538                 let e = report_unexpected_variant_res(tcx, res, qpath, expr.span, "E0533", "value");
539                 tcx.ty_error_with_guaranteed(e)
540             }
541             _ => self.instantiate_value_path(segs, opt_ty, res, expr.span, expr.hir_id).0,
542         };
543
544         if let ty::FnDef(did, ..) = *ty.kind() {
545             let fn_sig = ty.fn_sig(tcx);
546             if tcx.fn_sig(did).abi() == RustIntrinsic && tcx.item_name(did) == sym::transmute {
547                 let from = fn_sig.inputs().skip_binder()[0];
548                 let to = fn_sig.output().skip_binder();
549                 // We defer the transmute to the end of typeck, once all inference vars have
550                 // been resolved or we errored. This is important as we can only check transmute
551                 // on concrete types, but the output type may not be known yet (it would only
552                 // be known if explicitly specified via turbofish).
553                 self.deferred_transmute_checks.borrow_mut().push((from, to, expr.hir_id));
554             }
555             if !tcx.features().unsized_fn_params {
556                 // We want to remove some Sized bounds from std functions,
557                 // but don't want to expose the removal to stable Rust.
558                 // i.e., we don't want to allow
559                 //
560                 // ```rust
561                 // drop as fn(str);
562                 // ```
563                 //
564                 // to work in stable even if the Sized bound on `drop` is relaxed.
565                 for i in 0..fn_sig.inputs().skip_binder().len() {
566                     // We just want to check sizedness, so instead of introducing
567                     // placeholder lifetimes with probing, we just replace higher lifetimes
568                     // with fresh vars.
569                     let span = args.get(i).map(|a| a.span).unwrap_or(expr.span);
570                     let input = self.replace_bound_vars_with_fresh_vars(
571                         span,
572                         infer::LateBoundRegionConversionTime::FnCall,
573                         fn_sig.input(i),
574                     );
575                     self.require_type_is_sized_deferred(
576                         input,
577                         span,
578                         traits::SizedArgumentType(None),
579                     );
580                 }
581             }
582             // Here we want to prevent struct constructors from returning unsized types.
583             // There were two cases this happened: fn pointer coercion in stable
584             // and usual function call in presence of unsized_locals.
585             // Also, as we just want to check sizedness, instead of introducing
586             // placeholder lifetimes with probing, we just replace higher lifetimes
587             // with fresh vars.
588             let output = self.replace_bound_vars_with_fresh_vars(
589                 expr.span,
590                 infer::LateBoundRegionConversionTime::FnCall,
591                 fn_sig.output(),
592             );
593             self.require_type_is_sized_deferred(output, expr.span, traits::SizedReturnType);
594         }
595
596         // We always require that the type provided as the value for
597         // a type parameter outlives the moment of instantiation.
598         let substs = self.typeck_results.borrow().node_substs(expr.hir_id);
599         self.add_wf_bounds(substs, expr);
600
601         ty
602     }
603
604     fn check_expr_break(
605         &self,
606         destination: hir::Destination,
607         expr_opt: Option<&'tcx hir::Expr<'tcx>>,
608         expr: &'tcx hir::Expr<'tcx>,
609     ) -> Ty<'tcx> {
610         let tcx = self.tcx;
611         if let Ok(target_id) = destination.target_id {
612             let (e_ty, cause);
613             if let Some(e) = expr_opt {
614                 // If this is a break with a value, we need to type-check
615                 // the expression. Get an expected type from the loop context.
616                 let opt_coerce_to = {
617                     // We should release `enclosing_breakables` before the `check_expr_with_hint`
618                     // below, so can't move this block of code to the enclosing scope and share
619                     // `ctxt` with the second `enclosing_breakables` borrow below.
620                     let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
621                     match enclosing_breakables.opt_find_breakable(target_id) {
622                         Some(ctxt) => ctxt.coerce.as_ref().map(|coerce| coerce.expected_ty()),
623                         None => {
624                             // Avoid ICE when `break` is inside a closure (#65383).
625                             return tcx.ty_error_with_message(
626                                 expr.span,
627                                 "break was outside loop, but no error was emitted",
628                             );
629                         }
630                     }
631                 };
632
633                 // If the loop context is not a `loop { }`, then break with
634                 // a value is illegal, and `opt_coerce_to` will be `None`.
635                 // Just set expectation to error in that case.
636                 let coerce_to = opt_coerce_to.unwrap_or_else(|| tcx.ty_error());
637
638                 // Recurse without `enclosing_breakables` borrowed.
639                 e_ty = self.check_expr_with_hint(e, coerce_to);
640                 cause = self.misc(e.span);
641             } else {
642                 // Otherwise, this is a break *without* a value. That's
643                 // always legal, and is equivalent to `break ()`.
644                 e_ty = tcx.mk_unit();
645                 cause = self.misc(expr.span);
646             }
647
648             // Now that we have type-checked `expr_opt`, borrow
649             // the `enclosing_loops` field and let's coerce the
650             // type of `expr_opt` into what is expected.
651             let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
652             let Some(ctxt) = enclosing_breakables.opt_find_breakable(target_id) else {
653                 // Avoid ICE when `break` is inside a closure (#65383).
654                 return tcx.ty_error_with_message(
655                     expr.span,
656                     "break was outside loop, but no error was emitted",
657                 );
658             };
659
660             if let Some(ref mut coerce) = ctxt.coerce {
661                 if let Some(ref e) = expr_opt {
662                     coerce.coerce(self, &cause, e, e_ty);
663                 } else {
664                     assert!(e_ty.is_unit());
665                     let ty = coerce.expected_ty();
666                     coerce.coerce_forced_unit(
667                         self,
668                         &cause,
669                         &mut |mut err| {
670                             self.suggest_mismatched_types_on_tail(
671                                 &mut err, expr, ty, e_ty, target_id,
672                             );
673                             if let Some(val) = ty_kind_suggestion(ty) {
674                                 let label = destination
675                                     .label
676                                     .map(|l| format!(" {}", l.ident))
677                                     .unwrap_or_else(String::new);
678                                 err.span_suggestion(
679                                     expr.span,
680                                     "give it a value of the expected type",
681                                     format!("break{label} {val}"),
682                                     Applicability::HasPlaceholders,
683                                 );
684                             }
685                         },
686                         false,
687                     );
688                 }
689             } else {
690                 // If `ctxt.coerce` is `None`, we can just ignore
691                 // the type of the expression.  This is because
692                 // either this was a break *without* a value, in
693                 // which case it is always a legal type (`()`), or
694                 // else an error would have been flagged by the
695                 // `loops` pass for using break with an expression
696                 // where you are not supposed to.
697                 assert!(expr_opt.is_none() || self.tcx.sess.has_errors().is_some());
698             }
699
700             // If we encountered a `break`, then (no surprise) it may be possible to break from the
701             // loop... unless the value being returned from the loop diverges itself, e.g.
702             // `break return 5` or `break loop {}`.
703             ctxt.may_break |= !self.diverges.get().is_always();
704
705             // the type of a `break` is always `!`, since it diverges
706             tcx.types.never
707         } else {
708             // Otherwise, we failed to find the enclosing loop;
709             // this can only happen if the `break` was not
710             // inside a loop at all, which is caught by the
711             // loop-checking pass.
712             let err = self.tcx.ty_error_with_message(
713                 expr.span,
714                 "break was outside loop, but no error was emitted",
715             );
716
717             // We still need to assign a type to the inner expression to
718             // prevent the ICE in #43162.
719             if let Some(e) = expr_opt {
720                 self.check_expr_with_hint(e, err);
721
722                 // ... except when we try to 'break rust;'.
723                 // ICE this expression in particular (see #43162).
724                 if let ExprKind::Path(QPath::Resolved(_, path)) = e.kind {
725                     if path.segments.len() == 1 && path.segments[0].ident.name == sym::rust {
726                         fatally_break_rust(self.tcx.sess);
727                     }
728                 }
729             }
730
731             // There was an error; make type-check fail.
732             err
733         }
734     }
735
736     fn check_expr_return(
737         &self,
738         expr_opt: Option<&'tcx hir::Expr<'tcx>>,
739         expr: &'tcx hir::Expr<'tcx>,
740     ) -> Ty<'tcx> {
741         if self.ret_coercion.is_none() {
742             let mut err = ReturnStmtOutsideOfFnBody {
743                 span: expr.span,
744                 encl_body_span: None,
745                 encl_fn_span: None,
746             };
747
748             let encl_item_id = self.tcx.hir().get_parent_item(expr.hir_id);
749
750             if let Some(hir::Node::Item(hir::Item {
751                 kind: hir::ItemKind::Fn(..),
752                 span: encl_fn_span,
753                 ..
754             }))
755             | Some(hir::Node::TraitItem(hir::TraitItem {
756                 kind: hir::TraitItemKind::Fn(_, hir::TraitFn::Provided(_)),
757                 span: encl_fn_span,
758                 ..
759             }))
760             | Some(hir::Node::ImplItem(hir::ImplItem {
761                 kind: hir::ImplItemKind::Fn(..),
762                 span: encl_fn_span,
763                 ..
764             })) = self.tcx.hir().find_by_def_id(encl_item_id.def_id)
765             {
766                 // We are inside a function body, so reporting "return statement
767                 // outside of function body" needs an explanation.
768
769                 let encl_body_owner_id = self.tcx.hir().enclosing_body_owner(expr.hir_id);
770
771                 // If this didn't hold, we would not have to report an error in
772                 // the first place.
773                 assert_ne!(encl_item_id.def_id, encl_body_owner_id);
774
775                 let encl_body_id = self.tcx.hir().body_owned_by(encl_body_owner_id);
776                 let encl_body = self.tcx.hir().body(encl_body_id);
777
778                 err.encl_body_span = Some(encl_body.value.span);
779                 err.encl_fn_span = Some(*encl_fn_span);
780             }
781
782             self.tcx.sess.emit_err(err);
783
784             if let Some(e) = expr_opt {
785                 // We still have to type-check `e` (issue #86188), but calling
786                 // `check_return_expr` only works inside fn bodies.
787                 self.check_expr(e);
788             }
789         } else if let Some(e) = expr_opt {
790             if self.ret_coercion_span.get().is_none() {
791                 self.ret_coercion_span.set(Some(e.span));
792             }
793             self.check_return_expr(e, true);
794         } else {
795             let mut coercion = self.ret_coercion.as_ref().unwrap().borrow_mut();
796             if self.ret_coercion_span.get().is_none() {
797                 self.ret_coercion_span.set(Some(expr.span));
798             }
799             let cause = self.cause(expr.span, ObligationCauseCode::ReturnNoExpression);
800             if let Some((fn_decl, _)) = self.get_fn_decl(expr.hir_id) {
801                 coercion.coerce_forced_unit(
802                     self,
803                     &cause,
804                     &mut |db| {
805                         let span = fn_decl.output.span();
806                         if let Ok(snippet) = self.tcx.sess.source_map().span_to_snippet(span) {
807                             db.span_label(
808                                 span,
809                                 format!("expected `{snippet}` because of this return type"),
810                             );
811                         }
812                     },
813                     true,
814                 );
815             } else {
816                 coercion.coerce_forced_unit(self, &cause, &mut |_| (), true);
817             }
818         }
819         self.tcx.types.never
820     }
821
822     /// `explicit_return` is `true` if we're checking an explicit `return expr`,
823     /// and `false` if we're checking a trailing expression.
824     pub(super) fn check_return_expr(
825         &self,
826         return_expr: &'tcx hir::Expr<'tcx>,
827         explicit_return: bool,
828     ) {
829         let ret_coercion = self.ret_coercion.as_ref().unwrap_or_else(|| {
830             span_bug!(return_expr.span, "check_return_expr called outside fn body")
831         });
832
833         let ret_ty = ret_coercion.borrow().expected_ty();
834         let return_expr_ty = self.check_expr_with_hint(return_expr, ret_ty);
835         let mut span = return_expr.span;
836         // Use the span of the trailing expression for our cause,
837         // not the span of the entire function
838         if !explicit_return {
839             if let ExprKind::Block(body, _) = return_expr.kind && let Some(last_expr) = body.expr {
840                 span = last_expr.span;
841             }
842         }
843         ret_coercion.borrow_mut().coerce(
844             self,
845             &self.cause(span, ObligationCauseCode::ReturnValue(return_expr.hir_id)),
846             return_expr,
847             return_expr_ty,
848         );
849
850         if let Some(fn_sig) = self.body_fn_sig()
851             && fn_sig.output().has_opaque_types()
852         {
853             // Point any obligations that were registered due to opaque type
854             // inference at the return expression.
855             self.select_obligations_where_possible(|errors| {
856                 self.point_at_return_for_opaque_ty_error(errors, span, return_expr_ty);
857             });
858         }
859     }
860
861     fn point_at_return_for_opaque_ty_error(
862         &self,
863         errors: &mut Vec<traits::FulfillmentError<'tcx>>,
864         span: Span,
865         return_expr_ty: Ty<'tcx>,
866     ) {
867         // Don't point at the whole block if it's empty
868         if span == self.tcx.hir().span(self.body_id) {
869             return;
870         }
871         for err in errors {
872             let cause = &mut err.obligation.cause;
873             if let ObligationCauseCode::OpaqueReturnType(None) = cause.code() {
874                 let new_cause = ObligationCause::new(
875                     cause.span,
876                     cause.body_id,
877                     ObligationCauseCode::OpaqueReturnType(Some((return_expr_ty, span))),
878                 );
879                 *cause = new_cause;
880             }
881         }
882     }
883
884     pub(crate) fn check_lhs_assignable(
885         &self,
886         lhs: &'tcx hir::Expr<'tcx>,
887         err_code: &'static str,
888         op_span: Span,
889         adjust_err: impl FnOnce(&mut Diagnostic),
890     ) {
891         if lhs.is_syntactic_place_expr() {
892             return;
893         }
894
895         // FIXME: Make this use Diagnostic once error codes can be dynamically set.
896         let mut err = self.tcx.sess.struct_span_err_with_code(
897             op_span,
898             "invalid left-hand side of assignment",
899             DiagnosticId::Error(err_code.into()),
900         );
901         err.span_label(lhs.span, "cannot assign to this expression");
902
903         self.comes_from_while_condition(lhs.hir_id, |expr| {
904             err.span_suggestion_verbose(
905                 expr.span.shrink_to_lo(),
906                 "you might have meant to use pattern destructuring",
907                 "let ",
908                 Applicability::MachineApplicable,
909             );
910         });
911
912         adjust_err(&mut err);
913
914         err.emit();
915     }
916
917     // Check if an expression `original_expr_id` comes from the condition of a while loop,
918     /// as opposed from the body of a while loop, which we can naively check by iterating
919     /// parents until we find a loop...
920     pub(super) fn comes_from_while_condition(
921         &self,
922         original_expr_id: HirId,
923         then: impl FnOnce(&hir::Expr<'_>),
924     ) {
925         let mut parent = self.tcx.hir().get_parent_node(original_expr_id);
926         while let Some(node) = self.tcx.hir().find(parent) {
927             match node {
928                 hir::Node::Expr(hir::Expr {
929                     kind:
930                         hir::ExprKind::Loop(
931                             hir::Block {
932                                 expr:
933                                     Some(hir::Expr {
934                                         kind:
935                                             hir::ExprKind::Match(expr, ..) | hir::ExprKind::If(expr, ..),
936                                         ..
937                                     }),
938                                 ..
939                             },
940                             _,
941                             hir::LoopSource::While,
942                             _,
943                         ),
944                     ..
945                 }) => {
946                     // Check if our original expression is a child of the condition of a while loop
947                     let expr_is_ancestor = std::iter::successors(Some(original_expr_id), |id| {
948                         self.tcx.hir().find_parent_node(*id)
949                     })
950                     .take_while(|id| *id != parent)
951                     .any(|id| id == expr.hir_id);
952                     // if it is, then we have a situation like `while Some(0) = value.get(0) {`,
953                     // where `while let` was more likely intended.
954                     if expr_is_ancestor {
955                         then(expr);
956                     }
957                     break;
958                 }
959                 hir::Node::Item(_)
960                 | hir::Node::ImplItem(_)
961                 | hir::Node::TraitItem(_)
962                 | hir::Node::Crate(_) => break,
963                 _ => {
964                     parent = self.tcx.hir().get_parent_node(parent);
965                 }
966             }
967         }
968     }
969
970     // A generic function for checking the 'then' and 'else' clauses in an 'if'
971     // or 'if-else' expression.
972     fn check_then_else(
973         &self,
974         cond_expr: &'tcx hir::Expr<'tcx>,
975         then_expr: &'tcx hir::Expr<'tcx>,
976         opt_else_expr: Option<&'tcx hir::Expr<'tcx>>,
977         sp: Span,
978         orig_expected: Expectation<'tcx>,
979     ) -> Ty<'tcx> {
980         let cond_ty = self.check_expr_has_type_or_error(cond_expr, self.tcx.types.bool, |_| {});
981
982         self.warn_if_unreachable(
983             cond_expr.hir_id,
984             then_expr.span,
985             "block in `if` or `while` expression",
986         );
987
988         let cond_diverges = self.diverges.get();
989         self.diverges.set(Diverges::Maybe);
990
991         let expected = orig_expected.adjust_for_branches(self);
992         let then_ty = self.check_expr_with_expectation(then_expr, expected);
993         let then_diverges = self.diverges.get();
994         self.diverges.set(Diverges::Maybe);
995
996         // We've already taken the expected type's preferences
997         // into account when typing the `then` branch. To figure
998         // out the initial shot at a LUB, we thus only consider
999         // `expected` if it represents a *hard* constraint
1000         // (`only_has_type`); otherwise, we just go with a
1001         // fresh type variable.
1002         let coerce_to_ty = expected.coercion_target_type(self, sp);
1003         let mut coerce: DynamicCoerceMany<'_> = CoerceMany::new(coerce_to_ty);
1004
1005         coerce.coerce(self, &self.misc(sp), then_expr, then_ty);
1006
1007         if let Some(else_expr) = opt_else_expr {
1008             let else_ty = self.check_expr_with_expectation(else_expr, expected);
1009             let else_diverges = self.diverges.get();
1010
1011             let opt_suggest_box_span = self.opt_suggest_box_span(then_ty, else_ty, orig_expected);
1012             let if_cause = self.if_cause(
1013                 sp,
1014                 cond_expr.span,
1015                 then_expr,
1016                 else_expr,
1017                 then_ty,
1018                 else_ty,
1019                 opt_suggest_box_span,
1020             );
1021
1022             coerce.coerce(self, &if_cause, else_expr, else_ty);
1023
1024             // We won't diverge unless both branches do (or the condition does).
1025             self.diverges.set(cond_diverges | then_diverges & else_diverges);
1026         } else {
1027             self.if_fallback_coercion(sp, then_expr, &mut coerce);
1028
1029             // If the condition is false we can't diverge.
1030             self.diverges.set(cond_diverges);
1031         }
1032
1033         let result_ty = coerce.complete(self);
1034         if cond_ty.references_error() { self.tcx.ty_error() } else { result_ty }
1035     }
1036
1037     /// Type check assignment expression `expr` of form `lhs = rhs`.
1038     /// The expected type is `()` and is passed to the function for the purposes of diagnostics.
1039     fn check_expr_assign(
1040         &self,
1041         expr: &'tcx hir::Expr<'tcx>,
1042         expected: Expectation<'tcx>,
1043         lhs: &'tcx hir::Expr<'tcx>,
1044         rhs: &'tcx hir::Expr<'tcx>,
1045         span: Span,
1046     ) -> Ty<'tcx> {
1047         let expected_ty = expected.coercion_target_type(self, expr.span);
1048         if expected_ty == self.tcx.types.bool {
1049             // The expected type is `bool` but this will result in `()` so we can reasonably
1050             // say that the user intended to write `lhs == rhs` instead of `lhs = rhs`.
1051             // The likely cause of this is `if foo = bar { .. }`.
1052             let actual_ty = self.tcx.mk_unit();
1053             let mut err = self.demand_suptype_diag(expr.span, expected_ty, actual_ty).unwrap();
1054             let lhs_ty = self.check_expr(&lhs);
1055             let rhs_ty = self.check_expr(&rhs);
1056             let (applicability, eq) = if self.can_coerce(rhs_ty, lhs_ty) {
1057                 (Applicability::MachineApplicable, true)
1058             } else if let ExprKind::Binary(
1059                 Spanned { node: hir::BinOpKind::And | hir::BinOpKind::Or, .. },
1060                 _,
1061                 rhs_expr,
1062             ) = lhs.kind
1063             {
1064                 // if x == 1 && y == 2 { .. }
1065                 //                 +
1066                 let actual_lhs_ty = self.check_expr(&rhs_expr);
1067                 (Applicability::MaybeIncorrect, self.can_coerce(rhs_ty, actual_lhs_ty))
1068             } else if let ExprKind::Binary(
1069                 Spanned { node: hir::BinOpKind::And | hir::BinOpKind::Or, .. },
1070                 lhs_expr,
1071                 _,
1072             ) = rhs.kind
1073             {
1074                 // if x == 1 && y == 2 { .. }
1075                 //       +
1076                 let actual_rhs_ty = self.check_expr(&lhs_expr);
1077                 (Applicability::MaybeIncorrect, self.can_coerce(actual_rhs_ty, lhs_ty))
1078             } else {
1079                 (Applicability::MaybeIncorrect, false)
1080             };
1081             if !lhs.is_syntactic_place_expr()
1082                 && lhs.is_approximately_pattern()
1083                 && !matches!(lhs.kind, hir::ExprKind::Lit(_))
1084             {
1085                 // Do not suggest `if let x = y` as `==` is way more likely to be the intention.
1086                 let hir = self.tcx.hir();
1087                 if let hir::Node::Expr(hir::Expr { kind: ExprKind::If { .. }, .. }) =
1088                     hir.get(hir.get_parent_node(hir.get_parent_node(expr.hir_id)))
1089                 {
1090                     err.span_suggestion_verbose(
1091                         expr.span.shrink_to_lo(),
1092                         "you might have meant to use pattern matching",
1093                         "let ",
1094                         applicability,
1095                     );
1096                 };
1097             }
1098             if eq {
1099                 err.span_suggestion_verbose(
1100                     span.shrink_to_hi(),
1101                     "you might have meant to compare for equality",
1102                     '=',
1103                     applicability,
1104                 );
1105             }
1106
1107             // If the assignment expression itself is ill-formed, don't
1108             // bother emitting another error
1109             let reported = err.emit_unless(lhs_ty.references_error() || rhs_ty.references_error());
1110             return self.tcx.ty_error_with_guaranteed(reported);
1111         }
1112
1113         let lhs_ty = self.check_expr_with_needs(&lhs, Needs::MutPlace);
1114
1115         let suggest_deref_binop = |err: &mut Diagnostic, rhs_ty: Ty<'tcx>| {
1116             if let Some(lhs_deref_ty) = self.deref_once_mutably_for_diagnostic(lhs_ty) {
1117                 // Can only assign if the type is sized, so if `DerefMut` yields a type that is
1118                 // unsized, do not suggest dereferencing it.
1119                 let lhs_deref_ty_is_sized = self
1120                     .infcx
1121                     .type_implements_trait(
1122                         self.tcx.require_lang_item(LangItem::Sized, None),
1123                         [lhs_deref_ty],
1124                         self.param_env,
1125                     )
1126                     .may_apply();
1127                 if lhs_deref_ty_is_sized && self.can_coerce(rhs_ty, lhs_deref_ty) {
1128                     err.span_suggestion_verbose(
1129                         lhs.span.shrink_to_lo(),
1130                         "consider dereferencing here to assign to the mutably borrowed value",
1131                         "*",
1132                         Applicability::MachineApplicable,
1133                     );
1134                 }
1135             }
1136         };
1137
1138         // This is (basically) inlined `check_expr_coercable_to_type`, but we want
1139         // to suggest an additional fixup here in `suggest_deref_binop`.
1140         let rhs_ty = self.check_expr_with_hint(&rhs, lhs_ty);
1141         if let (_, Some(mut diag)) =
1142             self.demand_coerce_diag(rhs, rhs_ty, lhs_ty, Some(lhs), AllowTwoPhase::No)
1143         {
1144             suggest_deref_binop(&mut diag, rhs_ty);
1145             diag.emit();
1146         }
1147
1148         self.check_lhs_assignable(lhs, "E0070", span, |err| {
1149             if let Some(rhs_ty) = self.typeck_results.borrow().expr_ty_opt(rhs) {
1150                 suggest_deref_binop(err, rhs_ty);
1151             }
1152         });
1153
1154         self.require_type_is_sized(lhs_ty, lhs.span, traits::AssignmentLhsSized);
1155
1156         if lhs_ty.references_error() || rhs_ty.references_error() {
1157             self.tcx.ty_error()
1158         } else {
1159             self.tcx.mk_unit()
1160         }
1161     }
1162
1163     pub(super) fn check_expr_let(&self, let_expr: &'tcx hir::Let<'tcx>) -> Ty<'tcx> {
1164         // for let statements, this is done in check_stmt
1165         let init = let_expr.init;
1166         self.warn_if_unreachable(init.hir_id, init.span, "block in `let` expression");
1167         // otherwise check exactly as a let statement
1168         self.check_decl(let_expr.into());
1169         // but return a bool, for this is a boolean expression
1170         self.tcx.types.bool
1171     }
1172
1173     fn check_expr_loop(
1174         &self,
1175         body: &'tcx hir::Block<'tcx>,
1176         source: hir::LoopSource,
1177         expected: Expectation<'tcx>,
1178         expr: &'tcx hir::Expr<'tcx>,
1179     ) -> Ty<'tcx> {
1180         let coerce = match source {
1181             // you can only use break with a value from a normal `loop { }`
1182             hir::LoopSource::Loop => {
1183                 let coerce_to = expected.coercion_target_type(self, body.span);
1184                 Some(CoerceMany::new(coerce_to))
1185             }
1186
1187             hir::LoopSource::While | hir::LoopSource::ForLoop => None,
1188         };
1189
1190         let ctxt = BreakableCtxt {
1191             coerce,
1192             may_break: false, // Will get updated if/when we find a `break`.
1193         };
1194
1195         let (ctxt, ()) = self.with_breakable_ctxt(expr.hir_id, ctxt, || {
1196             self.check_block_no_value(&body);
1197         });
1198
1199         if ctxt.may_break {
1200             // No way to know whether it's diverging because
1201             // of a `break` or an outer `break` or `return`.
1202             self.diverges.set(Diverges::Maybe);
1203         }
1204
1205         // If we permit break with a value, then result type is
1206         // the LUB of the breaks (possibly ! if none); else, it
1207         // is nil. This makes sense because infinite loops
1208         // (which would have type !) are only possible iff we
1209         // permit break with a value [1].
1210         if ctxt.coerce.is_none() && !ctxt.may_break {
1211             // [1]
1212             self.tcx.sess.delay_span_bug(body.span, "no coercion, but loop may not break");
1213         }
1214         ctxt.coerce.map(|c| c.complete(self)).unwrap_or_else(|| self.tcx.mk_unit())
1215     }
1216
1217     /// Checks a method call.
1218     fn check_method_call(
1219         &self,
1220         expr: &'tcx hir::Expr<'tcx>,
1221         segment: &hir::PathSegment<'_>,
1222         rcvr: &'tcx hir::Expr<'tcx>,
1223         args: &'tcx [hir::Expr<'tcx>],
1224         expected: Expectation<'tcx>,
1225     ) -> Ty<'tcx> {
1226         let rcvr_t = self.check_expr(&rcvr);
1227         // no need to check for bot/err -- callee does that
1228         let rcvr_t = self.structurally_resolved_type(rcvr.span, rcvr_t);
1229         let span = segment.ident.span;
1230
1231         let method = match self.lookup_method(rcvr_t, segment, span, expr, rcvr, args) {
1232             Ok(method) => {
1233                 // We could add a "consider `foo::<params>`" suggestion here, but I wasn't able to
1234                 // trigger this codepath causing `structurally_resolved_type` to emit an error.
1235
1236                 self.write_method_call(expr.hir_id, method);
1237                 Ok(method)
1238             }
1239             Err(error) => {
1240                 if segment.ident.name != kw::Empty {
1241                     if let Some(mut err) = self.report_method_error(
1242                         span,
1243                         rcvr_t,
1244                         segment.ident,
1245                         SelfSource::MethodCall(rcvr),
1246                         error,
1247                         Some((rcvr, args)),
1248                     ) {
1249                         err.emit();
1250                     }
1251                 }
1252                 Err(())
1253             }
1254         };
1255
1256         // Call the generic checker.
1257         self.check_method_argument_types(span, expr, method, &args, DontTupleArguments, expected)
1258     }
1259
1260     fn check_expr_cast(
1261         &self,
1262         e: &'tcx hir::Expr<'tcx>,
1263         t: &'tcx hir::Ty<'tcx>,
1264         expr: &'tcx hir::Expr<'tcx>,
1265     ) -> Ty<'tcx> {
1266         // Find the type of `e`. Supply hints based on the type we are casting to,
1267         // if appropriate.
1268         let t_cast = self.to_ty_saving_user_provided_ty(t);
1269         let t_cast = self.resolve_vars_if_possible(t_cast);
1270         let t_expr = self.check_expr_with_expectation(e, ExpectCastableToType(t_cast));
1271         let t_expr = self.resolve_vars_if_possible(t_expr);
1272
1273         // Eagerly check for some obvious errors.
1274         if t_expr.references_error() || t_cast.references_error() {
1275             self.tcx.ty_error()
1276         } else {
1277             // Defer other checks until we're done type checking.
1278             let mut deferred_cast_checks = self.deferred_cast_checks.borrow_mut();
1279             match cast::CastCheck::new(
1280                 self,
1281                 e,
1282                 t_expr,
1283                 t_cast,
1284                 t.span,
1285                 expr.span,
1286                 self.param_env.constness(),
1287             ) {
1288                 Ok(cast_check) => {
1289                     debug!(
1290                         "check_expr_cast: deferring cast from {:?} to {:?}: {:?}",
1291                         t_cast, t_expr, cast_check,
1292                     );
1293                     deferred_cast_checks.push(cast_check);
1294                     t_cast
1295                 }
1296                 Err(_) => self.tcx.ty_error(),
1297             }
1298         }
1299     }
1300
1301     fn check_expr_array(
1302         &self,
1303         args: &'tcx [hir::Expr<'tcx>],
1304         expected: Expectation<'tcx>,
1305         expr: &'tcx hir::Expr<'tcx>,
1306     ) -> Ty<'tcx> {
1307         let element_ty = if !args.is_empty() {
1308             let coerce_to = expected
1309                 .to_option(self)
1310                 .and_then(|uty| match *uty.kind() {
1311                     ty::Array(ty, _) | ty::Slice(ty) => Some(ty),
1312                     _ => None,
1313                 })
1314                 .unwrap_or_else(|| {
1315                     self.next_ty_var(TypeVariableOrigin {
1316                         kind: TypeVariableOriginKind::TypeInference,
1317                         span: expr.span,
1318                     })
1319                 });
1320             let mut coerce = CoerceMany::with_coercion_sites(coerce_to, args);
1321             assert_eq!(self.diverges.get(), Diverges::Maybe);
1322             for e in args {
1323                 let e_ty = self.check_expr_with_hint(e, coerce_to);
1324                 let cause = self.misc(e.span);
1325                 coerce.coerce(self, &cause, e, e_ty);
1326             }
1327             coerce.complete(self)
1328         } else {
1329             self.next_ty_var(TypeVariableOrigin {
1330                 kind: TypeVariableOriginKind::TypeInference,
1331                 span: expr.span,
1332             })
1333         };
1334         let array_len = args.len() as u64;
1335         self.suggest_array_len(expr, array_len);
1336         self.tcx.mk_array(element_ty, array_len)
1337     }
1338
1339     fn suggest_array_len(&self, expr: &'tcx hir::Expr<'tcx>, array_len: u64) {
1340         let parent_node = self.tcx.hir().parent_iter(expr.hir_id).find(|(_, node)| {
1341             !matches!(node, hir::Node::Expr(hir::Expr { kind: hir::ExprKind::AddrOf(..), .. }))
1342         });
1343         let Some((_,
1344             hir::Node::Local(hir::Local { ty: Some(ty), .. })
1345             | hir::Node::Item(hir::Item { kind: hir::ItemKind::Const(ty, _), .. }))
1346         ) = parent_node else {
1347             return
1348         };
1349         if let hir::TyKind::Array(_, length) = ty.peel_refs().kind
1350             && let hir::ArrayLen::Body(hir::AnonConst { hir_id, .. }) = length
1351             && let Some(span) = self.tcx.hir().opt_span(hir_id)
1352         {
1353             match self.tcx.sess.diagnostic().steal_diagnostic(span, StashKey::UnderscoreForArrayLengths) {
1354                 Some(mut err) => {
1355                     err.span_suggestion(
1356                         span,
1357                         "consider specifying the array length",
1358                         array_len,
1359                         Applicability::MaybeIncorrect,
1360                     );
1361                     err.emit();
1362                 }
1363                 None => ()
1364             }
1365         }
1366     }
1367
1368     fn check_expr_const_block(
1369         &self,
1370         anon_const: &'tcx hir::AnonConst,
1371         expected: Expectation<'tcx>,
1372         _expr: &'tcx hir::Expr<'tcx>,
1373     ) -> Ty<'tcx> {
1374         let body = self.tcx.hir().body(anon_const.body);
1375
1376         // Create a new function context.
1377         let fcx = FnCtxt::new(self, self.param_env.with_const(), body.value.hir_id);
1378         crate::GatherLocalsVisitor::new(&fcx).visit_body(body);
1379
1380         let ty = fcx.check_expr_with_expectation(&body.value, expected);
1381         fcx.require_type_is_sized(ty, body.value.span, traits::ConstSized);
1382         fcx.write_ty(anon_const.hir_id, ty);
1383         ty
1384     }
1385
1386     fn check_expr_repeat(
1387         &self,
1388         element: &'tcx hir::Expr<'tcx>,
1389         count: &'tcx hir::ArrayLen,
1390         expected: Expectation<'tcx>,
1391         expr: &'tcx hir::Expr<'tcx>,
1392     ) -> Ty<'tcx> {
1393         let tcx = self.tcx;
1394         let count = self.array_length_to_const(count);
1395         if let Some(count) = count.try_eval_usize(tcx, self.param_env) {
1396             self.suggest_array_len(expr, count);
1397         }
1398
1399         let uty = match expected {
1400             ExpectHasType(uty) => match *uty.kind() {
1401                 ty::Array(ty, _) | ty::Slice(ty) => Some(ty),
1402                 _ => None,
1403             },
1404             _ => None,
1405         };
1406
1407         let (element_ty, t) = match uty {
1408             Some(uty) => {
1409                 self.check_expr_coercable_to_type(&element, uty, None);
1410                 (uty, uty)
1411             }
1412             None => {
1413                 let ty = self.next_ty_var(TypeVariableOrigin {
1414                     kind: TypeVariableOriginKind::MiscVariable,
1415                     span: element.span,
1416                 });
1417                 let element_ty = self.check_expr_has_type_or_error(&element, ty, |_| {});
1418                 (element_ty, ty)
1419             }
1420         };
1421
1422         if element_ty.references_error() {
1423             return tcx.ty_error();
1424         }
1425
1426         self.check_repeat_element_needs_copy_bound(element, count, element_ty);
1427
1428         tcx.mk_ty(ty::Array(t, count))
1429     }
1430
1431     fn check_repeat_element_needs_copy_bound(
1432         &self,
1433         element: &hir::Expr<'_>,
1434         count: ty::Const<'tcx>,
1435         element_ty: Ty<'tcx>,
1436     ) {
1437         let tcx = self.tcx;
1438         // Actual constants as the repeat element get inserted repeatedly instead of getting copied via Copy.
1439         match &element.kind {
1440             hir::ExprKind::ConstBlock(..) => return,
1441             hir::ExprKind::Path(qpath) => {
1442                 let res = self.typeck_results.borrow().qpath_res(qpath, element.hir_id);
1443                 if let Res::Def(DefKind::Const | DefKind::AssocConst | DefKind::AnonConst, _) = res
1444                 {
1445                     return;
1446                 }
1447             }
1448             _ => {}
1449         }
1450         // If someone calls a const fn, they can extract that call out into a separate constant (or a const
1451         // block in the future), so we check that to tell them that in the diagnostic. Does not affect typeck.
1452         let is_const_fn = match element.kind {
1453             hir::ExprKind::Call(func, _args) => match *self.node_ty(func.hir_id).kind() {
1454                 ty::FnDef(def_id, _) => tcx.is_const_fn(def_id),
1455                 _ => false,
1456             },
1457             _ => false,
1458         };
1459
1460         // If the length is 0, we don't create any elements, so we don't copy any. If the length is 1, we
1461         // don't copy that one element, we move it. Only check for Copy if the length is larger.
1462         if count.try_eval_usize(tcx, self.param_env).map_or(true, |len| len > 1) {
1463             let lang_item = self.tcx.require_lang_item(LangItem::Copy, None);
1464             let code = traits::ObligationCauseCode::RepeatElementCopy { is_const_fn };
1465             self.require_type_meets(element_ty, element.span, code, lang_item);
1466         }
1467     }
1468
1469     fn check_expr_tuple(
1470         &self,
1471         elts: &'tcx [hir::Expr<'tcx>],
1472         expected: Expectation<'tcx>,
1473         expr: &'tcx hir::Expr<'tcx>,
1474     ) -> Ty<'tcx> {
1475         let flds = expected.only_has_type(self).and_then(|ty| {
1476             let ty = self.resolve_vars_with_obligations(ty);
1477             match ty.kind() {
1478                 ty::Tuple(flds) => Some(&flds[..]),
1479                 _ => None,
1480             }
1481         });
1482
1483         let elt_ts_iter = elts.iter().enumerate().map(|(i, e)| match flds {
1484             Some(fs) if i < fs.len() => {
1485                 let ety = fs[i];
1486                 self.check_expr_coercable_to_type(&e, ety, None);
1487                 ety
1488             }
1489             _ => self.check_expr_with_expectation(&e, NoExpectation),
1490         });
1491         let tuple = self.tcx.mk_tup(elt_ts_iter);
1492         if tuple.references_error() {
1493             self.tcx.ty_error()
1494         } else {
1495             self.require_type_is_sized(tuple, expr.span, traits::TupleInitializerSized);
1496             tuple
1497         }
1498     }
1499
1500     fn check_expr_struct(
1501         &self,
1502         expr: &hir::Expr<'_>,
1503         expected: Expectation<'tcx>,
1504         qpath: &QPath<'_>,
1505         fields: &'tcx [hir::ExprField<'tcx>],
1506         base_expr: &'tcx Option<&'tcx hir::Expr<'tcx>>,
1507     ) -> Ty<'tcx> {
1508         // Find the relevant variant
1509         let Some((variant, adt_ty)) = self.check_struct_path(qpath, expr.hir_id) else {
1510             self.check_struct_fields_on_error(fields, base_expr);
1511             return self.tcx.ty_error();
1512         };
1513
1514         // Prohibit struct expressions when non-exhaustive flag is set.
1515         let adt = adt_ty.ty_adt_def().expect("`check_struct_path` returned non-ADT type");
1516         if !adt.did().is_local() && variant.is_field_list_non_exhaustive() {
1517             self.tcx
1518                 .sess
1519                 .emit_err(StructExprNonExhaustive { span: expr.span, what: adt.variant_descr() });
1520         }
1521
1522         self.check_expr_struct_fields(
1523             adt_ty,
1524             expected,
1525             expr.hir_id,
1526             qpath.span(),
1527             variant,
1528             fields,
1529             base_expr,
1530             expr.span,
1531         );
1532
1533         self.require_type_is_sized(adt_ty, expr.span, traits::StructInitializerSized);
1534         adt_ty
1535     }
1536
1537     fn check_expr_struct_fields(
1538         &self,
1539         adt_ty: Ty<'tcx>,
1540         expected: Expectation<'tcx>,
1541         expr_id: hir::HirId,
1542         span: Span,
1543         variant: &'tcx ty::VariantDef,
1544         ast_fields: &'tcx [hir::ExprField<'tcx>],
1545         base_expr: &'tcx Option<&'tcx hir::Expr<'tcx>>,
1546         expr_span: Span,
1547     ) {
1548         let tcx = self.tcx;
1549
1550         let expected_inputs =
1551             self.expected_inputs_for_expected_output(span, expected, adt_ty, &[adt_ty]);
1552         let adt_ty_hint = if let Some(expected_inputs) = expected_inputs {
1553             expected_inputs.get(0).cloned().unwrap_or(adt_ty)
1554         } else {
1555             adt_ty
1556         };
1557         // re-link the regions that EIfEO can erase.
1558         self.demand_eqtype(span, adt_ty_hint, adt_ty);
1559
1560         let ty::Adt(adt, substs) = adt_ty.kind() else {
1561             span_bug!(span, "non-ADT passed to check_expr_struct_fields");
1562         };
1563         let adt_kind = adt.adt_kind();
1564
1565         let mut remaining_fields = variant
1566             .fields
1567             .iter()
1568             .enumerate()
1569             .map(|(i, field)| (field.ident(tcx).normalize_to_macros_2_0(), (i, field)))
1570             .collect::<FxHashMap<_, _>>();
1571
1572         let mut seen_fields = FxHashMap::default();
1573
1574         let mut error_happened = false;
1575
1576         // Type-check each field.
1577         for (idx, field) in ast_fields.iter().enumerate() {
1578             let ident = tcx.adjust_ident(field.ident, variant.def_id);
1579             let field_type = if let Some((i, v_field)) = remaining_fields.remove(&ident) {
1580                 seen_fields.insert(ident, field.span);
1581                 self.write_field_index(field.hir_id, i);
1582
1583                 // We don't look at stability attributes on
1584                 // struct-like enums (yet...), but it's definitely not
1585                 // a bug to have constructed one.
1586                 if adt_kind != AdtKind::Enum {
1587                     tcx.check_stability(v_field.did, Some(expr_id), field.span, None);
1588                 }
1589
1590                 self.field_ty(field.span, v_field, substs)
1591             } else {
1592                 error_happened = true;
1593                 if let Some(prev_span) = seen_fields.get(&ident) {
1594                     tcx.sess.emit_err(FieldMultiplySpecifiedInInitializer {
1595                         span: field.ident.span,
1596                         prev_span: *prev_span,
1597                         ident,
1598                     });
1599                 } else {
1600                     self.report_unknown_field(
1601                         adt_ty,
1602                         variant,
1603                         field,
1604                         ast_fields,
1605                         adt.variant_descr(),
1606                         expr_span,
1607                     );
1608                 }
1609
1610                 tcx.ty_error()
1611             };
1612
1613             // Make sure to give a type to the field even if there's
1614             // an error, so we can continue type-checking.
1615             let ty = self.check_expr_with_hint(&field.expr, field_type);
1616             let (_, diag) =
1617                 self.demand_coerce_diag(&field.expr, ty, field_type, None, AllowTwoPhase::No);
1618
1619             if let Some(mut diag) = diag {
1620                 if idx == ast_fields.len() - 1 {
1621                     if remaining_fields.is_empty() {
1622                         self.suggest_fru_from_range(field, variant, substs, &mut diag);
1623                         diag.emit();
1624                     } else {
1625                         diag.stash(field.span, StashKey::MaybeFruTypo);
1626                     }
1627                 } else {
1628                     diag.emit();
1629                 }
1630             }
1631         }
1632
1633         // Make sure the programmer specified correct number of fields.
1634         if adt_kind == AdtKind::Union {
1635             if ast_fields.len() != 1 {
1636                 struct_span_err!(
1637                     tcx.sess,
1638                     span,
1639                     E0784,
1640                     "union expressions should have exactly one field",
1641                 )
1642                 .emit();
1643             }
1644         }
1645
1646         // If check_expr_struct_fields hit an error, do not attempt to populate
1647         // the fields with the base_expr. This could cause us to hit errors later
1648         // when certain fields are assumed to exist that in fact do not.
1649         if error_happened {
1650             return;
1651         }
1652
1653         if let Some(base_expr) = base_expr {
1654             // FIXME: We are currently creating two branches here in order to maintain
1655             // consistency. But they should be merged as much as possible.
1656             let fru_tys = if self.tcx.features().type_changing_struct_update {
1657                 if adt.is_struct() {
1658                     // Make some fresh substitutions for our ADT type.
1659                     let fresh_substs = self.fresh_substs_for_item(base_expr.span, adt.did());
1660                     // We do subtyping on the FRU fields first, so we can
1661                     // learn exactly what types we expect the base expr
1662                     // needs constrained to be compatible with the struct
1663                     // type we expect from the expectation value.
1664                     let fru_tys = variant
1665                         .fields
1666                         .iter()
1667                         .map(|f| {
1668                             let fru_ty = self.normalize(
1669                                 expr_span,
1670                                 self.field_ty(base_expr.span, f, fresh_substs),
1671                             );
1672                             let ident = self.tcx.adjust_ident(f.ident(self.tcx), variant.def_id);
1673                             if let Some(_) = remaining_fields.remove(&ident) {
1674                                 let target_ty = self.field_ty(base_expr.span, f, substs);
1675                                 let cause = self.misc(base_expr.span);
1676                                 match self.at(&cause, self.param_env).sup(target_ty, fru_ty) {
1677                                     Ok(InferOk { obligations, value: () }) => {
1678                                         self.register_predicates(obligations)
1679                                     }
1680                                     Err(_) => {
1681                                         // This should never happen, since we're just subtyping the
1682                                         // remaining_fields, but it's fine to emit this, I guess.
1683                                         self.err_ctxt()
1684                                             .report_mismatched_types(
1685                                                 &cause,
1686                                                 target_ty,
1687                                                 fru_ty,
1688                                                 FieldMisMatch(variant.name, ident.name),
1689                                             )
1690                                             .emit();
1691                                     }
1692                                 }
1693                             }
1694                             self.resolve_vars_if_possible(fru_ty)
1695                         })
1696                         .collect();
1697                     // The use of fresh substs that we have subtyped against
1698                     // our base ADT type's fields allows us to guide inference
1699                     // along so that, e.g.
1700                     // ```
1701                     // MyStruct<'a, F1, F2, const C: usize> {
1702                     //     f: F1,
1703                     //     // Other fields that reference `'a`, `F2`, and `C`
1704                     // }
1705                     //
1706                     // let x = MyStruct {
1707                     //    f: 1usize,
1708                     //    ..other_struct
1709                     // };
1710                     // ```
1711                     // will have the `other_struct` expression constrained to
1712                     // `MyStruct<'a, _, F2, C>`, as opposed to just `_`...
1713                     // This is important to allow coercions to happen in
1714                     // `other_struct` itself. See `coerce-in-base-expr.rs`.
1715                     let fresh_base_ty = self.tcx.mk_adt(*adt, fresh_substs);
1716                     self.check_expr_has_type_or_error(
1717                         base_expr,
1718                         self.resolve_vars_if_possible(fresh_base_ty),
1719                         |_| {},
1720                     );
1721                     fru_tys
1722                 } else {
1723                     // Check the base_expr, regardless of a bad expected adt_ty, so we can get
1724                     // type errors on that expression, too.
1725                     self.check_expr(base_expr);
1726                     self.tcx
1727                         .sess
1728                         .emit_err(FunctionalRecordUpdateOnNonStruct { span: base_expr.span });
1729                     return;
1730                 }
1731             } else {
1732                 self.check_expr_has_type_or_error(base_expr, adt_ty, |_| {
1733                     let base_ty = self.typeck_results.borrow().expr_ty(*base_expr);
1734                     let same_adt = match (adt_ty.kind(), base_ty.kind()) {
1735                         (ty::Adt(adt, _), ty::Adt(base_adt, _)) if adt == base_adt => true,
1736                         _ => false,
1737                     };
1738                     if self.tcx.sess.is_nightly_build() && same_adt {
1739                         feature_err(
1740                             &self.tcx.sess.parse_sess,
1741                             sym::type_changing_struct_update,
1742                             base_expr.span,
1743                             "type changing struct updating is experimental",
1744                         )
1745                         .emit();
1746                     }
1747                 });
1748                 match adt_ty.kind() {
1749                     ty::Adt(adt, substs) if adt.is_struct() => variant
1750                         .fields
1751                         .iter()
1752                         .map(|f| self.normalize(expr_span, f.ty(self.tcx, substs)))
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                 self.tcx
1994                     .sess
1995                     .delay_span_bug(expr_span, "parser recovered but no error was emitted"),
1996             );
1997             return;
1998         }
1999         let mut err = self.err_ctxt().type_error_struct_with_diag(
2000             field.ident.span,
2001             |actual| match ty.kind() {
2002                 ty::Adt(adt, ..) if adt.is_enum() => struct_span_err!(
2003                     self.tcx.sess,
2004                     field.ident.span,
2005                     E0559,
2006                     "{} `{}::{}` has no field named `{}`",
2007                     kind_name,
2008                     actual,
2009                     variant.name,
2010                     field.ident
2011                 ),
2012                 _ => struct_span_err!(
2013                     self.tcx.sess,
2014                     field.ident.span,
2015                     E0560,
2016                     "{} `{}` has no field named `{}`",
2017                     kind_name,
2018                     actual,
2019                     field.ident
2020                 ),
2021             },
2022             ty,
2023         );
2024
2025         let variant_ident_span = self.tcx.def_ident_span(variant.def_id).unwrap();
2026         match variant.ctor_kind() {
2027             Some(CtorKind::Fn) => match ty.kind() {
2028                 ty::Adt(adt, ..) if adt.is_enum() => {
2029                     err.span_label(
2030                         variant_ident_span,
2031                         format!(
2032                             "`{adt}::{variant}` defined here",
2033                             adt = ty,
2034                             variant = variant.name,
2035                         ),
2036                     );
2037                     err.span_label(field.ident.span, "field does not exist");
2038                     err.span_suggestion_verbose(
2039                         expr_span,
2040                         &format!(
2041                             "`{adt}::{variant}` is a tuple {kind_name}, use the appropriate syntax",
2042                             adt = ty,
2043                             variant = variant.name,
2044                         ),
2045                         format!(
2046                             "{adt}::{variant}(/* fields */)",
2047                             adt = ty,
2048                             variant = variant.name,
2049                         ),
2050                         Applicability::HasPlaceholders,
2051                     );
2052                 }
2053                 _ => {
2054                     err.span_label(variant_ident_span, format!("`{adt}` defined here", adt = ty));
2055                     err.span_label(field.ident.span, "field does not exist");
2056                     err.span_suggestion_verbose(
2057                         expr_span,
2058                         &format!(
2059                             "`{adt}` is a tuple {kind_name}, use the appropriate syntax",
2060                             adt = ty,
2061                             kind_name = kind_name,
2062                         ),
2063                         format!("{adt}(/* fields */)", adt = ty),
2064                         Applicability::HasPlaceholders,
2065                     );
2066                 }
2067             },
2068             _ => {
2069                 // prevent all specified fields from being suggested
2070                 let skip_fields = skip_fields.iter().map(|x| x.ident.name);
2071                 if let Some(field_name) = self.suggest_field_name(
2072                     variant,
2073                     field.ident.name,
2074                     skip_fields.collect(),
2075                     expr_span,
2076                 ) {
2077                     err.span_suggestion(
2078                         field.ident.span,
2079                         "a field with a similar name exists",
2080                         field_name,
2081                         Applicability::MaybeIncorrect,
2082                     );
2083                 } else {
2084                     match ty.kind() {
2085                         ty::Adt(adt, ..) => {
2086                             if adt.is_enum() {
2087                                 err.span_label(
2088                                     field.ident.span,
2089                                     format!("`{}::{}` does not have this field", ty, variant.name),
2090                                 );
2091                             } else {
2092                                 err.span_label(
2093                                     field.ident.span,
2094                                     format!("`{ty}` does not have this field"),
2095                                 );
2096                             }
2097                             let available_field_names =
2098                                 self.available_field_names(variant, expr_span);
2099                             if !available_field_names.is_empty() {
2100                                 err.note(&format!(
2101                                     "available fields are: {}",
2102                                     self.name_series_display(available_field_names)
2103                                 ));
2104                             }
2105                         }
2106                         _ => bug!("non-ADT passed to report_unknown_field"),
2107                     }
2108                 };
2109             }
2110         }
2111         err.emit();
2112     }
2113
2114     // Return a hint about the closest match in field names
2115     fn suggest_field_name(
2116         &self,
2117         variant: &'tcx ty::VariantDef,
2118         field: Symbol,
2119         skip: Vec<Symbol>,
2120         // The span where stability will be checked
2121         span: Span,
2122     ) -> Option<Symbol> {
2123         let names = variant
2124             .fields
2125             .iter()
2126             .filter_map(|field| {
2127                 // ignore already set fields and private fields from non-local crates
2128                 // and unstable fields.
2129                 if skip.iter().any(|&x| x == field.name)
2130                     || (!variant.def_id.is_local() && !field.vis.is_public())
2131                     || matches!(
2132                         self.tcx.eval_stability(field.did, None, span, None),
2133                         stability::EvalResult::Deny { .. }
2134                     )
2135                 {
2136                     None
2137                 } else {
2138                     Some(field.name)
2139                 }
2140             })
2141             .collect::<Vec<Symbol>>();
2142
2143         find_best_match_for_name(&names, field, None)
2144     }
2145
2146     fn available_field_names(
2147         &self,
2148         variant: &'tcx ty::VariantDef,
2149         access_span: Span,
2150     ) -> Vec<Symbol> {
2151         variant
2152             .fields
2153             .iter()
2154             .filter(|field| {
2155                 let def_scope = self
2156                     .tcx
2157                     .adjust_ident_and_get_scope(field.ident(self.tcx), variant.def_id, self.body_id)
2158                     .1;
2159                 field.vis.is_accessible_from(def_scope, self.tcx)
2160                     && !matches!(
2161                         self.tcx.eval_stability(field.did, None, access_span, None),
2162                         stability::EvalResult::Deny { .. }
2163                     )
2164             })
2165             .filter(|field| !self.tcx.is_doc_hidden(field.did))
2166             .map(|field| field.name)
2167             .collect()
2168     }
2169
2170     fn name_series_display(&self, names: Vec<Symbol>) -> String {
2171         // dynamic limit, to never omit just one field
2172         let limit = if names.len() == 6 { 6 } else { 5 };
2173         let mut display =
2174             names.iter().take(limit).map(|n| format!("`{}`", n)).collect::<Vec<_>>().join(", ");
2175         if names.len() > limit {
2176             display = format!("{} ... and {} others", display, names.len() - limit);
2177         }
2178         display
2179     }
2180
2181     // Check field access expressions
2182     fn check_field(
2183         &self,
2184         expr: &'tcx hir::Expr<'tcx>,
2185         base: &'tcx hir::Expr<'tcx>,
2186         field: Ident,
2187     ) -> Ty<'tcx> {
2188         debug!("check_field(expr: {:?}, base: {:?}, field: {:?})", expr, base, field);
2189         let base_ty = self.check_expr(base);
2190         let base_ty = self.structurally_resolved_type(base.span, base_ty);
2191         let mut private_candidate = None;
2192         let mut autoderef = self.autoderef(expr.span, base_ty);
2193         while let Some((deref_base_ty, _)) = autoderef.next() {
2194             debug!("deref_base_ty: {:?}", deref_base_ty);
2195             match deref_base_ty.kind() {
2196                 ty::Adt(base_def, substs) if !base_def.is_enum() => {
2197                     debug!("struct named {:?}", deref_base_ty);
2198                     let (ident, def_scope) =
2199                         self.tcx.adjust_ident_and_get_scope(field, base_def.did(), self.body_id);
2200                     let fields = &base_def.non_enum_variant().fields;
2201                     if let Some(index) = fields
2202                         .iter()
2203                         .position(|f| f.ident(self.tcx).normalize_to_macros_2_0() == ident)
2204                     {
2205                         let field = &fields[index];
2206                         let field_ty = self.field_ty(expr.span, field, substs);
2207                         // Save the index of all fields regardless of their visibility in case
2208                         // of error recovery.
2209                         self.write_field_index(expr.hir_id, index);
2210                         let adjustments = self.adjust_steps(&autoderef);
2211                         if field.vis.is_accessible_from(def_scope, self.tcx) {
2212                             self.apply_adjustments(base, adjustments);
2213                             self.register_predicates(autoderef.into_obligations());
2214
2215                             self.tcx.check_stability(field.did, Some(expr.hir_id), expr.span, None);
2216                             return field_ty;
2217                         }
2218                         private_candidate = Some((adjustments, base_def.did(), field_ty));
2219                     }
2220                 }
2221                 ty::Tuple(tys) => {
2222                     let fstr = field.as_str();
2223                     if let Ok(index) = fstr.parse::<usize>() {
2224                         if fstr == index.to_string() {
2225                             if let Some(&field_ty) = tys.get(index) {
2226                                 let adjustments = self.adjust_steps(&autoderef);
2227                                 self.apply_adjustments(base, adjustments);
2228                                 self.register_predicates(autoderef.into_obligations());
2229
2230                                 self.write_field_index(expr.hir_id, index);
2231                                 return field_ty;
2232                             }
2233                         }
2234                     }
2235                 }
2236                 _ => {}
2237             }
2238         }
2239         self.structurally_resolved_type(autoderef.span(), autoderef.final_ty(false));
2240
2241         if let Some((adjustments, did, field_ty)) = private_candidate {
2242             // (#90483) apply adjustments to avoid ExprUseVisitor from
2243             // creating erroneous projection.
2244             self.apply_adjustments(base, adjustments);
2245             self.ban_private_field_access(expr, base_ty, field, did);
2246             return field_ty;
2247         }
2248
2249         if field.name == kw::Empty {
2250         } else if self.method_exists(field, base_ty, expr.hir_id, true) {
2251             self.ban_take_value_of_method(expr, base_ty, field);
2252         } else if !base_ty.is_primitive_ty() {
2253             self.ban_nonexisting_field(field, base, expr, base_ty);
2254         } else {
2255             let field_name = field.to_string();
2256             let mut err = type_error_struct!(
2257                 self.tcx().sess,
2258                 field.span,
2259                 base_ty,
2260                 E0610,
2261                 "`{base_ty}` is a primitive type and therefore doesn't have fields",
2262             );
2263             let is_valid_suffix = |field: &str| {
2264                 if field == "f32" || field == "f64" {
2265                     return true;
2266                 }
2267                 let mut chars = field.chars().peekable();
2268                 match chars.peek() {
2269                     Some('e') | Some('E') => {
2270                         chars.next();
2271                         if let Some(c) = chars.peek()
2272                             && !c.is_numeric() && *c != '-' && *c != '+'
2273                         {
2274                             return false;
2275                         }
2276                         while let Some(c) = chars.peek() {
2277                             if !c.is_numeric() {
2278                                 break;
2279                             }
2280                             chars.next();
2281                         }
2282                     }
2283                     _ => (),
2284                 }
2285                 let suffix = chars.collect::<String>();
2286                 suffix.is_empty() || suffix == "f32" || suffix == "f64"
2287             };
2288             let maybe_partial_suffix = |field: &str| -> Option<&str> {
2289                 let first_chars = ['f', 'l'];
2290                 if field.len() >= 1
2291                     && field.to_lowercase().starts_with(first_chars)
2292                     && field[1..].chars().all(|c| c.is_ascii_digit())
2293                 {
2294                     if field.to_lowercase().starts_with(['f']) { Some("f32") } else { Some("f64") }
2295                 } else {
2296                     None
2297                 }
2298             };
2299             if let ty::Infer(ty::IntVar(_)) = base_ty.kind()
2300                 && let ExprKind::Lit(Spanned {
2301                     node: ast::LitKind::Int(_, ast::LitIntType::Unsuffixed),
2302                     ..
2303                 }) = base.kind
2304                 && !base.span.from_expansion()
2305             {
2306                 if is_valid_suffix(&field_name) {
2307                     err.span_suggestion_verbose(
2308                         field.span.shrink_to_lo(),
2309                         "if intended to be a floating point literal, consider adding a `0` after the period",
2310                         '0',
2311                         Applicability::MaybeIncorrect,
2312                     );
2313                 } else if let Some(correct_suffix) = maybe_partial_suffix(&field_name) {
2314                     err.span_suggestion_verbose(
2315                         field.span,
2316                         format!("if intended to be a floating point literal, consider adding a `0` after the period and a `{correct_suffix}` suffix"),
2317                         format!("0{correct_suffix}"),
2318                         Applicability::MaybeIncorrect,
2319                     );
2320                 }
2321             }
2322             err.emit();
2323         }
2324
2325         self.tcx().ty_error()
2326     }
2327
2328     fn suggest_await_on_field_access(
2329         &self,
2330         err: &mut Diagnostic,
2331         field_ident: Ident,
2332         base: &'tcx hir::Expr<'tcx>,
2333         ty: Ty<'tcx>,
2334     ) {
2335         let Some(output_ty) = self.get_impl_future_output_ty(ty) else { return; };
2336         let mut add_label = true;
2337         if let ty::Adt(def, _) = output_ty.kind() {
2338             // no field access on enum type
2339             if !def.is_enum() {
2340                 if def
2341                     .non_enum_variant()
2342                     .fields
2343                     .iter()
2344                     .any(|field| field.ident(self.tcx) == field_ident)
2345                 {
2346                     add_label = false;
2347                     err.span_label(
2348                         field_ident.span,
2349                         "field not available in `impl Future`, but it is available in its `Output`",
2350                     );
2351                     err.span_suggestion_verbose(
2352                         base.span.shrink_to_hi(),
2353                         "consider `await`ing on the `Future` and access the field of its `Output`",
2354                         ".await",
2355                         Applicability::MaybeIncorrect,
2356                     );
2357                 }
2358             }
2359         }
2360         if add_label {
2361             err.span_label(field_ident.span, &format!("field not found in `{ty}`"));
2362         }
2363     }
2364
2365     fn ban_nonexisting_field(
2366         &self,
2367         ident: Ident,
2368         base: &'tcx hir::Expr<'tcx>,
2369         expr: &'tcx hir::Expr<'tcx>,
2370         base_ty: Ty<'tcx>,
2371     ) {
2372         debug!(
2373             "ban_nonexisting_field: field={:?}, base={:?}, expr={:?}, base_ty={:?}",
2374             ident, base, expr, base_ty
2375         );
2376         let mut err = self.no_such_field_err(ident, base_ty, base.hir_id);
2377
2378         match *base_ty.peel_refs().kind() {
2379             ty::Array(_, len) => {
2380                 self.maybe_suggest_array_indexing(&mut err, expr, base, ident, len);
2381             }
2382             ty::RawPtr(..) => {
2383                 self.suggest_first_deref_field(&mut err, expr, base, ident);
2384             }
2385             ty::Adt(def, _) if !def.is_enum() => {
2386                 self.suggest_fields_on_recordish(&mut err, def, ident, expr.span);
2387             }
2388             ty::Param(param_ty) => {
2389                 self.point_at_param_definition(&mut err, param_ty);
2390             }
2391             ty::Opaque(_, _) => {
2392                 self.suggest_await_on_field_access(&mut err, ident, base, base_ty.peel_refs());
2393             }
2394             _ => {}
2395         }
2396
2397         self.suggest_fn_call(&mut err, base, base_ty, |output_ty| {
2398             if let ty::Adt(def, _) = output_ty.kind() && !def.is_enum() {
2399                 def.non_enum_variant().fields.iter().any(|field| {
2400                     field.ident(self.tcx) == ident
2401                         && field.vis.is_accessible_from(expr.hir_id.owner.def_id, self.tcx)
2402                 })
2403             } else if let ty::Tuple(tys) = output_ty.kind()
2404                 && let Ok(idx) = ident.as_str().parse::<usize>()
2405             {
2406                 idx < tys.len()
2407             } else {
2408                 false
2409             }
2410         });
2411
2412         if ident.name == kw::Await {
2413             // We know by construction that `<expr>.await` is either on Rust 2015
2414             // or results in `ExprKind::Await`. Suggest switching the edition to 2018.
2415             err.note("to `.await` a `Future`, switch to Rust 2018 or later");
2416             err.help_use_latest_edition();
2417         }
2418
2419         err.emit();
2420     }
2421
2422     fn ban_private_field_access(
2423         &self,
2424         expr: &hir::Expr<'_>,
2425         expr_t: Ty<'tcx>,
2426         field: Ident,
2427         base_did: DefId,
2428     ) {
2429         let struct_path = self.tcx().def_path_str(base_did);
2430         let kind_name = self.tcx().def_kind(base_did).descr(base_did);
2431         let mut err = struct_span_err!(
2432             self.tcx().sess,
2433             field.span,
2434             E0616,
2435             "field `{field}` of {kind_name} `{struct_path}` is private",
2436         );
2437         err.span_label(field.span, "private field");
2438         // Also check if an accessible method exists, which is often what is meant.
2439         if self.method_exists(field, expr_t, expr.hir_id, false) && !self.expr_in_place(expr.hir_id)
2440         {
2441             self.suggest_method_call(
2442                 &mut err,
2443                 &format!("a method `{field}` also exists, call it with parentheses"),
2444                 field,
2445                 expr_t,
2446                 expr,
2447                 None,
2448             );
2449         }
2450         err.emit();
2451     }
2452
2453     fn ban_take_value_of_method(&self, expr: &hir::Expr<'_>, expr_t: Ty<'tcx>, field: Ident) {
2454         let mut err = type_error_struct!(
2455             self.tcx().sess,
2456             field.span,
2457             expr_t,
2458             E0615,
2459             "attempted to take value of method `{field}` on type `{expr_t}`",
2460         );
2461         err.span_label(field.span, "method, not a field");
2462         let expr_is_call =
2463             if let hir::Node::Expr(hir::Expr { kind: ExprKind::Call(callee, _args), .. }) =
2464                 self.tcx.hir().get(self.tcx.hir().get_parent_node(expr.hir_id))
2465             {
2466                 expr.hir_id == callee.hir_id
2467             } else {
2468                 false
2469             };
2470         let expr_snippet =
2471             self.tcx.sess.source_map().span_to_snippet(expr.span).unwrap_or_default();
2472         let is_wrapped = expr_snippet.starts_with('(') && expr_snippet.ends_with(')');
2473         let after_open = expr.span.lo() + rustc_span::BytePos(1);
2474         let before_close = expr.span.hi() - rustc_span::BytePos(1);
2475
2476         if expr_is_call && is_wrapped {
2477             err.multipart_suggestion(
2478                 "remove wrapping parentheses to call the method",
2479                 vec![
2480                     (expr.span.with_hi(after_open), String::new()),
2481                     (expr.span.with_lo(before_close), String::new()),
2482                 ],
2483                 Applicability::MachineApplicable,
2484             );
2485         } else if !self.expr_in_place(expr.hir_id) {
2486             // Suggest call parentheses inside the wrapping parentheses
2487             let span = if is_wrapped {
2488                 expr.span.with_lo(after_open).with_hi(before_close)
2489             } else {
2490                 expr.span
2491             };
2492             self.suggest_method_call(
2493                 &mut err,
2494                 "use parentheses to call the method",
2495                 field,
2496                 expr_t,
2497                 expr,
2498                 Some(span),
2499             );
2500         } else if let ty::RawPtr(ty_and_mut) = expr_t.kind()
2501             && let ty::Adt(adt_def, _) = ty_and_mut.ty.kind()
2502             && let ExprKind::Field(base_expr, _) = expr.kind
2503             && adt_def.variants().len() == 1
2504             && adt_def
2505                 .variants()
2506                 .iter()
2507                 .next()
2508                 .unwrap()
2509                 .fields
2510                 .iter()
2511                 .any(|f| f.ident(self.tcx) == field)
2512         {
2513             err.multipart_suggestion(
2514                 "to access the field, dereference first",
2515                 vec![
2516                     (base_expr.span.shrink_to_lo(), "(*".to_string()),
2517                     (base_expr.span.shrink_to_hi(), ")".to_string()),
2518                 ],
2519                 Applicability::MaybeIncorrect,
2520             );
2521         } else {
2522             err.help("methods are immutable and cannot be assigned to");
2523         }
2524
2525         err.emit();
2526     }
2527
2528     fn point_at_param_definition(&self, err: &mut Diagnostic, param: ty::ParamTy) {
2529         let generics = self.tcx.generics_of(self.body_id.owner.to_def_id());
2530         let generic_param = generics.type_param(&param, self.tcx);
2531         if let ty::GenericParamDefKind::Type { synthetic: true, .. } = generic_param.kind {
2532             return;
2533         }
2534         let param_def_id = generic_param.def_id;
2535         let param_hir_id = match param_def_id.as_local() {
2536             Some(x) => self.tcx.hir().local_def_id_to_hir_id(x),
2537             None => return,
2538         };
2539         let param_span = self.tcx.hir().span(param_hir_id);
2540         let param_name = self.tcx.hir().ty_param_name(param_def_id.expect_local());
2541
2542         err.span_label(param_span, &format!("type parameter '{param_name}' declared here"));
2543     }
2544
2545     fn suggest_fields_on_recordish(
2546         &self,
2547         err: &mut Diagnostic,
2548         def: ty::AdtDef<'tcx>,
2549         field: Ident,
2550         access_span: Span,
2551     ) {
2552         if let Some(suggested_field_name) =
2553             self.suggest_field_name(def.non_enum_variant(), field.name, vec![], access_span)
2554         {
2555             err.span_suggestion(
2556                 field.span,
2557                 "a field with a similar name exists",
2558                 suggested_field_name,
2559                 Applicability::MaybeIncorrect,
2560             );
2561         } else {
2562             err.span_label(field.span, "unknown field");
2563             let struct_variant_def = def.non_enum_variant();
2564             let field_names = self.available_field_names(struct_variant_def, access_span);
2565             if !field_names.is_empty() {
2566                 err.note(&format!(
2567                     "available fields are: {}",
2568                     self.name_series_display(field_names),
2569                 ));
2570             }
2571         }
2572     }
2573
2574     fn maybe_suggest_array_indexing(
2575         &self,
2576         err: &mut Diagnostic,
2577         expr: &hir::Expr<'_>,
2578         base: &hir::Expr<'_>,
2579         field: Ident,
2580         len: ty::Const<'tcx>,
2581     ) {
2582         if let (Some(len), Ok(user_index)) =
2583             (len.try_eval_usize(self.tcx, self.param_env), field.as_str().parse::<u64>())
2584             && let Ok(base) = self.tcx.sess.source_map().span_to_snippet(base.span)
2585         {
2586             let help = "instead of using tuple indexing, use array indexing";
2587             let suggestion = format!("{base}[{field}]");
2588             let applicability = if len < user_index {
2589                 Applicability::MachineApplicable
2590             } else {
2591                 Applicability::MaybeIncorrect
2592             };
2593             err.span_suggestion(expr.span, help, suggestion, applicability);
2594         }
2595     }
2596
2597     fn suggest_first_deref_field(
2598         &self,
2599         err: &mut Diagnostic,
2600         expr: &hir::Expr<'_>,
2601         base: &hir::Expr<'_>,
2602         field: Ident,
2603     ) {
2604         if let Ok(base) = self.tcx.sess.source_map().span_to_snippet(base.span) {
2605             let msg = format!("`{base}` is a raw pointer; try dereferencing it");
2606             let suggestion = format!("(*{base}).{field}");
2607             err.span_suggestion(expr.span, &msg, suggestion, Applicability::MaybeIncorrect);
2608         }
2609     }
2610
2611     fn no_such_field_err(
2612         &self,
2613         field: Ident,
2614         expr_t: Ty<'tcx>,
2615         id: HirId,
2616     ) -> DiagnosticBuilder<'_, ErrorGuaranteed> {
2617         let span = field.span;
2618         debug!("no_such_field_err(span: {:?}, field: {:?}, expr_t: {:?})", span, field, expr_t);
2619
2620         let mut err = type_error_struct!(
2621             self.tcx().sess,
2622             field.span,
2623             expr_t,
2624             E0609,
2625             "no field `{field}` on type `{expr_t}`",
2626         );
2627
2628         // try to add a suggestion in case the field is a nested field of a field of the Adt
2629         let mod_id = self.tcx.parent_module(id).to_def_id();
2630         if let Some((fields, substs)) =
2631             self.get_field_candidates_considering_privacy(span, expr_t, mod_id)
2632         {
2633             let candidate_fields: Vec<_> = fields
2634                 .filter_map(|candidate_field| {
2635                     self.check_for_nested_field_satisfying(
2636                         span,
2637                         &|candidate_field, _| candidate_field.ident(self.tcx()) == field,
2638                         candidate_field,
2639                         substs,
2640                         vec![],
2641                         mod_id,
2642                     )
2643                 })
2644                 .map(|mut field_path| {
2645                     field_path.pop();
2646                     field_path
2647                         .iter()
2648                         .map(|id| id.name.to_ident_string())
2649                         .collect::<Vec<String>>()
2650                         .join(".")
2651                 })
2652                 .collect::<Vec<_>>();
2653
2654             let len = candidate_fields.len();
2655             if len > 0 {
2656                 err.span_suggestions(
2657                     field.span.shrink_to_lo(),
2658                     format!(
2659                         "{} of the expressions' fields {} a field of the same name",
2660                         if len > 1 { "some" } else { "one" },
2661                         if len > 1 { "have" } else { "has" },
2662                     ),
2663                     candidate_fields.iter().map(|path| format!("{path}.")),
2664                     Applicability::MaybeIncorrect,
2665                 );
2666             }
2667         }
2668         err
2669     }
2670
2671     pub(crate) fn get_field_candidates_considering_privacy(
2672         &self,
2673         span: Span,
2674         base_ty: Ty<'tcx>,
2675         mod_id: DefId,
2676     ) -> Option<(impl Iterator<Item = &'tcx ty::FieldDef> + 'tcx, SubstsRef<'tcx>)> {
2677         debug!("get_field_candidates(span: {:?}, base_t: {:?}", span, base_ty);
2678
2679         for (base_t, _) in self.autoderef(span, base_ty) {
2680             match base_t.kind() {
2681                 ty::Adt(base_def, substs) if !base_def.is_enum() => {
2682                     let tcx = self.tcx;
2683                     let fields = &base_def.non_enum_variant().fields;
2684                     // Some struct, e.g. some that impl `Deref`, have all private fields
2685                     // because you're expected to deref them to access the _real_ fields.
2686                     // This, for example, will help us suggest accessing a field through a `Box<T>`.
2687                     if fields.iter().all(|field| !field.vis.is_accessible_from(mod_id, tcx)) {
2688                         continue;
2689                     }
2690                     return Some((
2691                         fields
2692                             .iter()
2693                             .filter(move |field| field.vis.is_accessible_from(mod_id, tcx))
2694                             // For compile-time reasons put a limit on number of fields we search
2695                             .take(100),
2696                         substs,
2697                     ));
2698                 }
2699                 _ => {}
2700             }
2701         }
2702         None
2703     }
2704
2705     /// This method is called after we have encountered a missing field error to recursively
2706     /// search for the field
2707     pub(crate) fn check_for_nested_field_satisfying(
2708         &self,
2709         span: Span,
2710         matches: &impl Fn(&ty::FieldDef, Ty<'tcx>) -> bool,
2711         candidate_field: &ty::FieldDef,
2712         subst: SubstsRef<'tcx>,
2713         mut field_path: Vec<Ident>,
2714         mod_id: DefId,
2715     ) -> Option<Vec<Ident>> {
2716         debug!(
2717             "check_for_nested_field_satisfying(span: {:?}, candidate_field: {:?}, field_path: {:?}",
2718             span, candidate_field, field_path
2719         );
2720
2721         if field_path.len() > 3 {
2722             // For compile-time reasons and to avoid infinite recursion we only check for fields
2723             // up to a depth of three
2724             None
2725         } else {
2726             field_path.push(candidate_field.ident(self.tcx).normalize_to_macros_2_0());
2727             let field_ty = candidate_field.ty(self.tcx, subst);
2728             if matches(candidate_field, field_ty) {
2729                 return Some(field_path);
2730             } else if let Some((nested_fields, subst)) =
2731                 self.get_field_candidates_considering_privacy(span, field_ty, mod_id)
2732             {
2733                 // recursively search fields of `candidate_field` if it's a ty::Adt
2734                 for field in nested_fields {
2735                     if let Some(field_path) = self.check_for_nested_field_satisfying(
2736                         span,
2737                         matches,
2738                         field,
2739                         subst,
2740                         field_path.clone(),
2741                         mod_id,
2742                     ) {
2743                         return Some(field_path);
2744                     }
2745                 }
2746             }
2747             None
2748         }
2749     }
2750
2751     fn check_expr_index(
2752         &self,
2753         base: &'tcx hir::Expr<'tcx>,
2754         idx: &'tcx hir::Expr<'tcx>,
2755         expr: &'tcx hir::Expr<'tcx>,
2756     ) -> Ty<'tcx> {
2757         let base_t = self.check_expr(&base);
2758         let idx_t = self.check_expr(&idx);
2759
2760         if base_t.references_error() {
2761             base_t
2762         } else if idx_t.references_error() {
2763             idx_t
2764         } else {
2765             let base_t = self.structurally_resolved_type(base.span, base_t);
2766             match self.lookup_indexing(expr, base, base_t, idx, idx_t) {
2767                 Some((index_ty, element_ty)) => {
2768                     // two-phase not needed because index_ty is never mutable
2769                     self.demand_coerce(idx, idx_t, index_ty, None, AllowTwoPhase::No);
2770                     self.select_obligations_where_possible(|errors| {
2771                         self.point_at_index_if_possible(errors, idx.span)
2772                     });
2773                     element_ty
2774                 }
2775                 None => {
2776                     let mut err = type_error_struct!(
2777                         self.tcx.sess,
2778                         expr.span,
2779                         base_t,
2780                         E0608,
2781                         "cannot index into a value of type `{base_t}`",
2782                     );
2783                     // Try to give some advice about indexing tuples.
2784                     if let ty::Tuple(..) = base_t.kind() {
2785                         let mut needs_note = true;
2786                         // If the index is an integer, we can show the actual
2787                         // fixed expression:
2788                         if let ExprKind::Lit(ref lit) = idx.kind {
2789                             if let ast::LitKind::Int(i, ast::LitIntType::Unsuffixed) = lit.node {
2790                                 let snip = self.tcx.sess.source_map().span_to_snippet(base.span);
2791                                 if let Ok(snip) = snip {
2792                                     err.span_suggestion(
2793                                         expr.span,
2794                                         "to access tuple elements, use",
2795                                         format!("{snip}.{i}"),
2796                                         Applicability::MachineApplicable,
2797                                     );
2798                                     needs_note = false;
2799                                 }
2800                             }
2801                         }
2802                         if needs_note {
2803                             err.help(
2804                                 "to access tuple elements, use tuple indexing \
2805                                         syntax (e.g., `tuple.0`)",
2806                             );
2807                         }
2808                     }
2809                     let reported = err.emit();
2810                     self.tcx.ty_error_with_guaranteed(reported)
2811                 }
2812             }
2813         }
2814     }
2815
2816     fn point_at_index_if_possible(
2817         &self,
2818         errors: &mut Vec<traits::FulfillmentError<'tcx>>,
2819         span: Span,
2820     ) {
2821         for error in errors {
2822             match error.obligation.predicate.kind().skip_binder() {
2823                 ty::PredicateKind::Clause(ty::Clause::Trait(predicate))
2824                     if self.tcx.is_diagnostic_item(sym::SliceIndex, predicate.trait_ref.def_id) => {
2825                 }
2826                 _ => continue,
2827             }
2828             error.obligation.cause.span = span;
2829         }
2830     }
2831
2832     fn check_expr_yield(
2833         &self,
2834         value: &'tcx hir::Expr<'tcx>,
2835         expr: &'tcx hir::Expr<'tcx>,
2836         src: &'tcx hir::YieldSource,
2837     ) -> Ty<'tcx> {
2838         match self.resume_yield_tys {
2839             Some((resume_ty, yield_ty)) => {
2840                 self.check_expr_coercable_to_type(&value, yield_ty, None);
2841
2842                 resume_ty
2843             }
2844             // Given that this `yield` expression was generated as a result of lowering a `.await`,
2845             // we know that the yield type must be `()`; however, the context won't contain this
2846             // information. Hence, we check the source of the yield expression here and check its
2847             // value's type against `()` (this check should always hold).
2848             None if src.is_await() => {
2849                 self.check_expr_coercable_to_type(&value, self.tcx.mk_unit(), None);
2850                 self.tcx.mk_unit()
2851             }
2852             _ => {
2853                 self.tcx.sess.emit_err(YieldExprOutsideOfGenerator { span: expr.span });
2854                 // Avoid expressions without types during writeback (#78653).
2855                 self.check_expr(value);
2856                 self.tcx.mk_unit()
2857             }
2858         }
2859     }
2860
2861     fn check_expr_asm_operand(&self, expr: &'tcx hir::Expr<'tcx>, is_input: bool) {
2862         let needs = if is_input { Needs::None } else { Needs::MutPlace };
2863         let ty = self.check_expr_with_needs(expr, needs);
2864         self.require_type_is_sized(ty, expr.span, traits::InlineAsmSized);
2865
2866         if !is_input && !expr.is_syntactic_place_expr() {
2867             let mut err = self.tcx.sess.struct_span_err(expr.span, "invalid asm output");
2868             err.span_label(expr.span, "cannot assign to this expression");
2869             err.emit();
2870         }
2871
2872         // If this is an input value, we require its type to be fully resolved
2873         // at this point. This allows us to provide helpful coercions which help
2874         // pass the type candidate list in a later pass.
2875         //
2876         // We don't require output types to be resolved at this point, which
2877         // allows them to be inferred based on how they are used later in the
2878         // function.
2879         if is_input {
2880             let ty = self.structurally_resolved_type(expr.span, ty);
2881             match *ty.kind() {
2882                 ty::FnDef(..) => {
2883                     let fnptr_ty = self.tcx.mk_fn_ptr(ty.fn_sig(self.tcx));
2884                     self.demand_coerce(expr, ty, fnptr_ty, None, AllowTwoPhase::No);
2885                 }
2886                 ty::Ref(_, base_ty, mutbl) => {
2887                     let ptr_ty = self.tcx.mk_ptr(ty::TypeAndMut { ty: base_ty, mutbl });
2888                     self.demand_coerce(expr, ty, ptr_ty, None, AllowTwoPhase::No);
2889                 }
2890                 _ => {}
2891             }
2892         }
2893     }
2894
2895     fn check_expr_asm(&self, asm: &'tcx hir::InlineAsm<'tcx>) -> Ty<'tcx> {
2896         for (op, _op_sp) in asm.operands {
2897             match op {
2898                 hir::InlineAsmOperand::In { expr, .. } => {
2899                     self.check_expr_asm_operand(expr, true);
2900                 }
2901                 hir::InlineAsmOperand::Out { expr: Some(expr), .. }
2902                 | hir::InlineAsmOperand::InOut { expr, .. } => {
2903                     self.check_expr_asm_operand(expr, false);
2904                 }
2905                 hir::InlineAsmOperand::Out { expr: None, .. } => {}
2906                 hir::InlineAsmOperand::SplitInOut { in_expr, out_expr, .. } => {
2907                     self.check_expr_asm_operand(in_expr, true);
2908                     if let Some(out_expr) = out_expr {
2909                         self.check_expr_asm_operand(out_expr, false);
2910                     }
2911                 }
2912                 // `AnonConst`s have their own body and is type-checked separately.
2913                 // As they don't flow into the type system we don't need them to
2914                 // be well-formed.
2915                 hir::InlineAsmOperand::Const { .. } | hir::InlineAsmOperand::SymFn { .. } => {}
2916                 hir::InlineAsmOperand::SymStatic { .. } => {}
2917             }
2918         }
2919         if asm.options.contains(ast::InlineAsmOptions::NORETURN) {
2920             self.tcx.types.never
2921         } else {
2922             self.tcx.mk_unit()
2923         }
2924     }
2925 }