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