]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_hir_typeck/src/callee.rs
Rollup merge of #104062 - notriddle:notriddle/sidebar-filler, r=GuillaumeGomez
[rust.git] / compiler / rustc_hir_typeck / src / callee.rs
1 use super::method::probe::{IsSuggestion, Mode, ProbeScope};
2 use super::method::MethodCallee;
3 use super::{Expectation, FnCtxt, TupleArgumentsFlag};
4
5 use crate::type_error_struct;
6 use rustc_ast::util::parser::PREC_POSTFIX;
7 use rustc_errors::{struct_span_err, Applicability, Diagnostic, StashKey};
8 use rustc_hir as hir;
9 use rustc_hir::def::{self, Namespace, Res};
10 use rustc_hir::def_id::DefId;
11 use rustc_infer::{
12     infer,
13     traits::{self, Obligation},
14 };
15 use rustc_infer::{
16     infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind},
17     traits::ObligationCause,
18 };
19 use rustc_middle::ty::adjustment::{
20     Adjust, Adjustment, AllowTwoPhase, AutoBorrow, AutoBorrowMutability,
21 };
22 use rustc_middle::ty::SubstsRef;
23 use rustc_middle::ty::{self, Ty, TyCtxt, TypeVisitable};
24 use rustc_span::def_id::LocalDefId;
25 use rustc_span::symbol::{sym, Ident};
26 use rustc_span::Span;
27 use rustc_target::spec::abi;
28 use rustc_trait_selection::autoderef::Autoderef;
29 use rustc_trait_selection::infer::InferCtxtExt as _;
30 use rustc_trait_selection::traits::error_reporting::DefIdOrName;
31 use rustc_trait_selection::traits::query::evaluate_obligation::InferCtxtExt as _;
32
33 use std::iter;
34
35 /// Checks that it is legal to call methods of the trait corresponding
36 /// to `trait_id` (this only cares about the trait, not the specific
37 /// method that is called).
38 pub fn check_legal_trait_for_method_call(
39     tcx: TyCtxt<'_>,
40     span: Span,
41     receiver: Option<Span>,
42     expr_span: Span,
43     trait_id: DefId,
44 ) {
45     if tcx.lang_items().drop_trait() == Some(trait_id) {
46         let mut err = struct_span_err!(tcx.sess, span, E0040, "explicit use of destructor method");
47         err.span_label(span, "explicit destructor calls not allowed");
48
49         let (sp, suggestion) = receiver
50             .and_then(|s| tcx.sess.source_map().span_to_snippet(s).ok())
51             .filter(|snippet| !snippet.is_empty())
52             .map(|snippet| (expr_span, format!("drop({snippet})")))
53             .unwrap_or_else(|| (span, "drop".to_string()));
54
55         err.span_suggestion(
56             sp,
57             "consider using `drop` function",
58             suggestion,
59             Applicability::MaybeIncorrect,
60         );
61
62         err.emit();
63     }
64 }
65
66 #[derive(Debug)]
67 enum CallStep<'tcx> {
68     Builtin(Ty<'tcx>),
69     DeferredClosure(LocalDefId, ty::FnSig<'tcx>),
70     /// E.g., enum variant constructors.
71     Overloaded(MethodCallee<'tcx>),
72 }
73
74 impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
75     pub fn check_call(
76         &self,
77         call_expr: &'tcx hir::Expr<'tcx>,
78         callee_expr: &'tcx hir::Expr<'tcx>,
79         arg_exprs: &'tcx [hir::Expr<'tcx>],
80         expected: Expectation<'tcx>,
81     ) -> Ty<'tcx> {
82         let original_callee_ty = match &callee_expr.kind {
83             hir::ExprKind::Path(hir::QPath::Resolved(..) | hir::QPath::TypeRelative(..)) => self
84                 .check_expr_with_expectation_and_args(
85                     callee_expr,
86                     Expectation::NoExpectation,
87                     arg_exprs,
88                 ),
89             _ => self.check_expr(callee_expr),
90         };
91
92         let expr_ty = self.structurally_resolved_type(call_expr.span, original_callee_ty);
93
94         let mut autoderef = self.autoderef(callee_expr.span, expr_ty);
95         let mut result = None;
96         while result.is_none() && autoderef.next().is_some() {
97             result = self.try_overloaded_call_step(call_expr, callee_expr, arg_exprs, &autoderef);
98         }
99         self.register_predicates(autoderef.into_obligations());
100
101         let output = match result {
102             None => {
103                 // this will report an error since original_callee_ty is not a fn
104                 self.confirm_builtin_call(
105                     call_expr,
106                     callee_expr,
107                     original_callee_ty,
108                     arg_exprs,
109                     expected,
110                 )
111             }
112
113             Some(CallStep::Builtin(callee_ty)) => {
114                 self.confirm_builtin_call(call_expr, callee_expr, callee_ty, arg_exprs, expected)
115             }
116
117             Some(CallStep::DeferredClosure(def_id, fn_sig)) => {
118                 self.confirm_deferred_closure_call(call_expr, arg_exprs, expected, def_id, fn_sig)
119             }
120
121             Some(CallStep::Overloaded(method_callee)) => {
122                 self.confirm_overloaded_call(call_expr, arg_exprs, expected, method_callee)
123             }
124         };
125
126         // we must check that return type of called functions is WF:
127         self.register_wf_obligation(output.into(), call_expr.span, traits::WellFormed(None));
128
129         output
130     }
131
132     #[instrument(level = "debug", skip(self, call_expr, callee_expr, arg_exprs, autoderef), ret)]
133     fn try_overloaded_call_step(
134         &self,
135         call_expr: &'tcx hir::Expr<'tcx>,
136         callee_expr: &'tcx hir::Expr<'tcx>,
137         arg_exprs: &'tcx [hir::Expr<'tcx>],
138         autoderef: &Autoderef<'a, 'tcx>,
139     ) -> Option<CallStep<'tcx>> {
140         let adjusted_ty =
141             self.structurally_resolved_type(autoderef.span(), autoderef.final_ty(false));
142
143         // If the callee is a bare function or a closure, then we're all set.
144         match *adjusted_ty.kind() {
145             ty::FnDef(..) | ty::FnPtr(_) => {
146                 let adjustments = self.adjust_steps(autoderef);
147                 self.apply_adjustments(callee_expr, adjustments);
148                 return Some(CallStep::Builtin(adjusted_ty));
149             }
150
151             ty::Closure(def_id, substs) => {
152                 let def_id = def_id.expect_local();
153
154                 // Check whether this is a call to a closure where we
155                 // haven't yet decided on whether the closure is fn vs
156                 // fnmut vs fnonce. If so, we have to defer further processing.
157                 if self.closure_kind(substs).is_none() {
158                     let closure_sig = substs.as_closure().sig();
159                     let closure_sig = self.replace_bound_vars_with_fresh_vars(
160                         call_expr.span,
161                         infer::FnCall,
162                         closure_sig,
163                     );
164                     let adjustments = self.adjust_steps(autoderef);
165                     self.record_deferred_call_resolution(
166                         def_id,
167                         DeferredCallResolution {
168                             call_expr,
169                             callee_expr,
170                             adjusted_ty,
171                             adjustments,
172                             fn_sig: closure_sig,
173                             closure_substs: substs,
174                         },
175                     );
176                     return Some(CallStep::DeferredClosure(def_id, closure_sig));
177                 }
178             }
179
180             // Hack: we know that there are traits implementing Fn for &F
181             // where F:Fn and so forth. In the particular case of types
182             // like `x: &mut FnMut()`, if there is a call `x()`, we would
183             // normally translate to `FnMut::call_mut(&mut x, ())`, but
184             // that winds up requiring `mut x: &mut FnMut()`. A little
185             // over the top. The simplest fix by far is to just ignore
186             // this case and deref again, so we wind up with
187             // `FnMut::call_mut(&mut *x, ())`.
188             ty::Ref(..) if autoderef.step_count() == 0 => {
189                 return None;
190             }
191
192             ty::Error(_) => {
193                 return None;
194             }
195
196             _ => {}
197         }
198
199         // Now, we look for the implementation of a Fn trait on the object's type.
200         // We first do it with the explicit instruction to look for an impl of
201         // `Fn<Tuple>`, with the tuple `Tuple` having an arity corresponding
202         // to the number of call parameters.
203         // If that fails (or_else branch), we try again without specifying the
204         // shape of the tuple (hence the None). This allows to detect an Fn trait
205         // is implemented, and use this information for diagnostic.
206         self.try_overloaded_call_traits(call_expr, adjusted_ty, Some(arg_exprs))
207             .or_else(|| self.try_overloaded_call_traits(call_expr, adjusted_ty, None))
208             .map(|(autoref, method)| {
209                 let mut adjustments = self.adjust_steps(autoderef);
210                 adjustments.extend(autoref);
211                 self.apply_adjustments(callee_expr, adjustments);
212                 CallStep::Overloaded(method)
213             })
214     }
215
216     fn try_overloaded_call_traits(
217         &self,
218         call_expr: &hir::Expr<'_>,
219         adjusted_ty: Ty<'tcx>,
220         opt_arg_exprs: Option<&'tcx [hir::Expr<'tcx>]>,
221     ) -> Option<(Option<Adjustment<'tcx>>, MethodCallee<'tcx>)> {
222         // Try the options that are least restrictive on the caller first.
223         for (opt_trait_def_id, method_name, borrow) in [
224             (self.tcx.lang_items().fn_trait(), Ident::with_dummy_span(sym::call), true),
225             (self.tcx.lang_items().fn_mut_trait(), Ident::with_dummy_span(sym::call_mut), true),
226             (self.tcx.lang_items().fn_once_trait(), Ident::with_dummy_span(sym::call_once), false),
227         ] {
228             let Some(trait_def_id) = opt_trait_def_id else { continue };
229
230             let opt_input_types = opt_arg_exprs.map(|arg_exprs| {
231                 [self.tcx.mk_tup(arg_exprs.iter().map(|e| {
232                     self.next_ty_var(TypeVariableOrigin {
233                         kind: TypeVariableOriginKind::TypeInference,
234                         span: e.span,
235                     })
236                 }))]
237             });
238             let opt_input_types = opt_input_types.as_ref().map(AsRef::as_ref);
239
240             if let Some(ok) = self.lookup_method_in_trait(
241                 call_expr.span,
242                 method_name,
243                 trait_def_id,
244                 adjusted_ty,
245                 opt_input_types,
246             ) {
247                 let method = self.register_infer_ok_obligations(ok);
248                 let mut autoref = None;
249                 if borrow {
250                     // Check for &self vs &mut self in the method signature. Since this is either
251                     // the Fn or FnMut trait, it should be one of those.
252                     let ty::Ref(region, _, mutbl) = method.sig.inputs()[0].kind() else {
253                         // The `fn`/`fn_mut` lang item is ill-formed, which should have
254                         // caused an error elsewhere.
255                         self.tcx
256                             .sess
257                             .delay_span_bug(call_expr.span, "input to call/call_mut is not a ref?");
258                         return None;
259                     };
260
261                     let mutbl = match mutbl {
262                         hir::Mutability::Not => AutoBorrowMutability::Not,
263                         hir::Mutability::Mut => AutoBorrowMutability::Mut {
264                             // For initial two-phase borrow
265                             // deployment, conservatively omit
266                             // overloaded function call ops.
267                             allow_two_phase_borrow: AllowTwoPhase::No,
268                         },
269                     };
270                     autoref = Some(Adjustment {
271                         kind: Adjust::Borrow(AutoBorrow::Ref(*region, mutbl)),
272                         target: method.sig.inputs()[0],
273                     });
274                 }
275                 return Some((autoref, method));
276             }
277         }
278
279         None
280     }
281
282     /// Give appropriate suggestion when encountering `||{/* not callable */}()`, where the
283     /// likely intention is to call the closure, suggest `(||{})()`. (#55851)
284     fn identify_bad_closure_def_and_call(
285         &self,
286         err: &mut Diagnostic,
287         hir_id: hir::HirId,
288         callee_node: &hir::ExprKind<'_>,
289         callee_span: Span,
290     ) {
291         let hir = self.tcx.hir();
292         let parent_hir_id = hir.get_parent_node(hir_id);
293         let parent_node = hir.get(parent_hir_id);
294         if let (
295             hir::Node::Expr(hir::Expr {
296                 kind: hir::ExprKind::Closure(&hir::Closure { fn_decl_span, body, .. }),
297                 ..
298             }),
299             hir::ExprKind::Block(..),
300         ) = (parent_node, callee_node)
301         {
302             let fn_decl_span = if hir.body(body).generator_kind
303                 == Some(hir::GeneratorKind::Async(hir::AsyncGeneratorKind::Closure))
304             {
305                 // Actually need to unwrap a few more layers of HIR to get to
306                 // the _real_ closure...
307                 let async_closure = hir.get_parent_node(hir.get_parent_node(parent_hir_id));
308                 if let hir::Node::Expr(hir::Expr {
309                     kind: hir::ExprKind::Closure(&hir::Closure { fn_decl_span, .. }),
310                     ..
311                 }) = hir.get(async_closure)
312                 {
313                     fn_decl_span
314                 } else {
315                     return;
316                 }
317             } else {
318                 fn_decl_span
319             };
320
321             let start = fn_decl_span.shrink_to_lo();
322             let end = callee_span.shrink_to_hi();
323             err.multipart_suggestion(
324                 "if you meant to create this closure and immediately call it, surround the \
325                 closure with parentheses",
326                 vec![(start, "(".to_string()), (end, ")".to_string())],
327                 Applicability::MaybeIncorrect,
328             );
329         }
330     }
331
332     /// Give appropriate suggestion when encountering `[("a", 0) ("b", 1)]`, where the
333     /// likely intention is to create an array containing tuples.
334     fn maybe_suggest_bad_array_definition(
335         &self,
336         err: &mut Diagnostic,
337         call_expr: &'tcx hir::Expr<'tcx>,
338         callee_expr: &'tcx hir::Expr<'tcx>,
339     ) -> bool {
340         let hir_id = self.tcx.hir().get_parent_node(call_expr.hir_id);
341         let parent_node = self.tcx.hir().get(hir_id);
342         if let (
343             hir::Node::Expr(hir::Expr { kind: hir::ExprKind::Array(_), .. }),
344             hir::ExprKind::Tup(exp),
345             hir::ExprKind::Call(_, args),
346         ) = (parent_node, &callee_expr.kind, &call_expr.kind)
347             && args.len() == exp.len()
348         {
349             let start = callee_expr.span.shrink_to_hi();
350             err.span_suggestion(
351                 start,
352                 "consider separating array elements with a comma",
353                 ",",
354                 Applicability::MaybeIncorrect,
355             );
356             return true;
357         }
358         false
359     }
360
361     fn confirm_builtin_call(
362         &self,
363         call_expr: &'tcx hir::Expr<'tcx>,
364         callee_expr: &'tcx hir::Expr<'tcx>,
365         callee_ty: Ty<'tcx>,
366         arg_exprs: &'tcx [hir::Expr<'tcx>],
367         expected: Expectation<'tcx>,
368     ) -> Ty<'tcx> {
369         let (fn_sig, def_id) = match *callee_ty.kind() {
370             ty::FnDef(def_id, subst) => {
371                 let fn_sig = self.tcx.bound_fn_sig(def_id).subst(self.tcx, subst);
372
373                 // Unit testing: function items annotated with
374                 // `#[rustc_evaluate_where_clauses]` trigger special output
375                 // to let us test the trait evaluation system.
376                 if self.tcx.has_attr(def_id, sym::rustc_evaluate_where_clauses) {
377                     let predicates = self.tcx.predicates_of(def_id);
378                     let predicates = predicates.instantiate(self.tcx, subst);
379                     for (predicate, predicate_span) in
380                         predicates.predicates.iter().zip(&predicates.spans)
381                     {
382                         let obligation = Obligation::new(
383                             ObligationCause::dummy_with_span(callee_expr.span),
384                             self.param_env,
385                             *predicate,
386                         );
387                         let result = self.evaluate_obligation(&obligation);
388                         self.tcx
389                             .sess
390                             .struct_span_err(
391                                 callee_expr.span,
392                                 &format!("evaluate({:?}) = {:?}", predicate, result),
393                             )
394                             .span_label(*predicate_span, "predicate")
395                             .emit();
396                     }
397                 }
398                 (fn_sig, Some(def_id))
399             }
400             ty::FnPtr(sig) => (sig, None),
401             _ => {
402                 if let hir::ExprKind::Path(hir::QPath::Resolved(_, path)) = &callee_expr.kind
403                     && let [segment] = path.segments
404                     && let Some(mut diag) = self
405                         .tcx
406                         .sess
407                         .diagnostic()
408                         .steal_diagnostic(segment.ident.span, StashKey::CallIntoMethod)
409                 {
410                     // Try suggesting `foo(a)` -> `a.foo()` if possible.
411                     if let Some(ty) =
412                         self.suggest_call_as_method(
413                             &mut diag,
414                             segment,
415                             arg_exprs,
416                             call_expr,
417                             expected
418                         )
419                     {
420                         diag.emit();
421                         return ty;
422                     } else {
423                         diag.emit();
424                     }
425                 }
426
427                 self.report_invalid_callee(call_expr, callee_expr, callee_ty, arg_exprs);
428
429                 // This is the "default" function signature, used in case of error.
430                 // In that case, we check each argument against "error" in order to
431                 // set up all the node type bindings.
432                 (
433                     ty::Binder::dummy(self.tcx.mk_fn_sig(
434                         self.err_args(arg_exprs.len()).into_iter(),
435                         self.tcx.ty_error(),
436                         false,
437                         hir::Unsafety::Normal,
438                         abi::Abi::Rust,
439                     )),
440                     None,
441                 )
442             }
443         };
444
445         // Replace any late-bound regions that appear in the function
446         // signature with region variables. We also have to
447         // renormalize the associated types at this point, since they
448         // previously appeared within a `Binder<>` and hence would not
449         // have been normalized before.
450         let fn_sig = self.replace_bound_vars_with_fresh_vars(call_expr.span, infer::FnCall, fn_sig);
451         let fn_sig = self.normalize_associated_types_in(call_expr.span, fn_sig);
452
453         // Call the generic checker.
454         let expected_arg_tys = self.expected_inputs_for_expected_output(
455             call_expr.span,
456             expected,
457             fn_sig.output(),
458             fn_sig.inputs(),
459         );
460         self.check_argument_types(
461             call_expr.span,
462             call_expr,
463             fn_sig.inputs(),
464             expected_arg_tys,
465             arg_exprs,
466             fn_sig.c_variadic,
467             TupleArgumentsFlag::DontTupleArguments,
468             def_id,
469         );
470
471         if fn_sig.abi == abi::Abi::RustCall {
472             let sp = arg_exprs.last().map_or(call_expr.span, |expr| expr.span);
473             if let Some(ty) = fn_sig.inputs().last().copied() {
474                 self.register_bound(
475                     ty,
476                     self.tcx.require_lang_item(hir::LangItem::Tuple, Some(sp)),
477                     traits::ObligationCause::new(sp, self.body_id, traits::RustCall),
478                 );
479             } else {
480                 self.tcx.sess.span_err(
481                         sp,
482                         "functions with the \"rust-call\" ABI must take a single non-self tuple argument",
483                     );
484             }
485         }
486
487         fn_sig.output()
488     }
489
490     /// Attempts to reinterpret `method(rcvr, args...)` as `rcvr.method(args...)`
491     /// and suggesting the fix if the method probe is successful.
492     fn suggest_call_as_method(
493         &self,
494         diag: &mut Diagnostic,
495         segment: &'tcx hir::PathSegment<'tcx>,
496         arg_exprs: &'tcx [hir::Expr<'tcx>],
497         call_expr: &'tcx hir::Expr<'tcx>,
498         expected: Expectation<'tcx>,
499     ) -> Option<Ty<'tcx>> {
500         if let [callee_expr, rest @ ..] = arg_exprs {
501             let callee_ty = self.check_expr(callee_expr);
502             // First, do a probe with `IsSuggestion(true)` to avoid emitting
503             // any strange errors. If it's successful, then we'll do a true
504             // method lookup.
505             let Ok(pick) = self
506             .probe_for_name(
507                 call_expr.span,
508                 Mode::MethodCall,
509                 segment.ident,
510                 IsSuggestion(true),
511                 callee_ty,
512                 call_expr.hir_id,
513                 // We didn't record the in scope traits during late resolution
514                 // so we need to probe AllTraits unfortunately
515                 ProbeScope::AllTraits,
516             ) else {
517                 return None;
518             };
519
520             let pick = self.confirm_method(
521                 call_expr.span,
522                 callee_expr,
523                 call_expr,
524                 callee_ty,
525                 pick,
526                 segment,
527             );
528             if pick.illegal_sized_bound.is_some() {
529                 return None;
530             }
531
532             let up_to_rcvr_span = segment.ident.span.until(callee_expr.span);
533             let rest_span = callee_expr.span.shrink_to_hi().to(call_expr.span.shrink_to_hi());
534             let rest_snippet = if let Some(first) = rest.first() {
535                 self.tcx
536                     .sess
537                     .source_map()
538                     .span_to_snippet(first.span.to(call_expr.span.shrink_to_hi()))
539             } else {
540                 Ok(")".to_string())
541             };
542
543             if let Ok(rest_snippet) = rest_snippet {
544                 let sugg = if callee_expr.precedence().order() >= PREC_POSTFIX {
545                     vec![
546                         (up_to_rcvr_span, "".to_string()),
547                         (rest_span, format!(".{}({rest_snippet}", segment.ident)),
548                     ]
549                 } else {
550                     vec![
551                         (up_to_rcvr_span, "(".to_string()),
552                         (rest_span, format!(").{}({rest_snippet}", segment.ident)),
553                     ]
554                 };
555                 let self_ty = self.resolve_vars_if_possible(pick.callee.sig.inputs()[0]);
556                 diag.multipart_suggestion(
557                     format!(
558                         "use the `.` operator to call the method `{}{}` on `{self_ty}`",
559                         self.tcx
560                             .associated_item(pick.callee.def_id)
561                             .trait_container(self.tcx)
562                             .map_or_else(
563                                 || String::new(),
564                                 |trait_def_id| self.tcx.def_path_str(trait_def_id) + "::"
565                             ),
566                         segment.ident
567                     ),
568                     sugg,
569                     Applicability::MaybeIncorrect,
570                 );
571
572                 // Let's check the method fully now
573                 let return_ty = self.check_method_argument_types(
574                     segment.ident.span,
575                     call_expr,
576                     Ok(pick.callee),
577                     rest,
578                     TupleArgumentsFlag::DontTupleArguments,
579                     expected,
580                 );
581
582                 return Some(return_ty);
583             }
584         }
585
586         None
587     }
588
589     fn report_invalid_callee(
590         &self,
591         call_expr: &'tcx hir::Expr<'tcx>,
592         callee_expr: &'tcx hir::Expr<'tcx>,
593         callee_ty: Ty<'tcx>,
594         arg_exprs: &'tcx [hir::Expr<'tcx>],
595     ) {
596         let mut unit_variant = None;
597         if let hir::ExprKind::Path(qpath) = &callee_expr.kind
598             && let Res::Def(def::DefKind::Ctor(kind, def::CtorKind::Const), _)
599                 = self.typeck_results.borrow().qpath_res(qpath, callee_expr.hir_id)
600             // Only suggest removing parens if there are no arguments
601             && arg_exprs.is_empty()
602         {
603             let descr = match kind {
604                 def::CtorOf::Struct => "struct",
605                 def::CtorOf::Variant => "enum variant",
606             };
607             let removal_span = callee_expr.span.shrink_to_hi().to(call_expr.span.shrink_to_hi());
608             unit_variant = Some((removal_span, descr, rustc_hir_pretty::qpath_to_string(qpath)));
609         }
610
611         let callee_ty = self.resolve_vars_if_possible(callee_ty);
612         let mut err = type_error_struct!(
613             self.tcx.sess,
614             callee_expr.span,
615             callee_ty,
616             E0618,
617             "expected function, found {}",
618             match &unit_variant {
619                 Some((_, kind, path)) => format!("{kind} `{path}`"),
620                 None => format!("`{callee_ty}`"),
621             }
622         );
623
624         self.identify_bad_closure_def_and_call(
625             &mut err,
626             call_expr.hir_id,
627             &callee_expr.kind,
628             callee_expr.span,
629         );
630
631         if let Some((removal_span, kind, path)) = &unit_variant {
632             err.span_suggestion_verbose(
633                 *removal_span,
634                 &format!(
635                     "`{path}` is a unit {kind}, and does not take parentheses to be constructed",
636                 ),
637                 "",
638                 Applicability::MachineApplicable,
639             );
640         }
641
642         let mut inner_callee_path = None;
643         let def = match callee_expr.kind {
644             hir::ExprKind::Path(ref qpath) => {
645                 self.typeck_results.borrow().qpath_res(qpath, callee_expr.hir_id)
646             }
647             hir::ExprKind::Call(ref inner_callee, _) => {
648                 // If the call spans more than one line and the callee kind is
649                 // itself another `ExprCall`, that's a clue that we might just be
650                 // missing a semicolon (Issue #51055)
651                 let call_is_multiline = self.tcx.sess.source_map().is_multiline(call_expr.span);
652                 if call_is_multiline {
653                     err.span_suggestion(
654                         callee_expr.span.shrink_to_hi(),
655                         "consider using a semicolon here",
656                         ";",
657                         Applicability::MaybeIncorrect,
658                     );
659                 }
660                 if let hir::ExprKind::Path(ref inner_qpath) = inner_callee.kind {
661                     inner_callee_path = Some(inner_qpath);
662                     self.typeck_results.borrow().qpath_res(inner_qpath, inner_callee.hir_id)
663                 } else {
664                     Res::Err
665                 }
666             }
667             _ => Res::Err,
668         };
669
670         if !self.maybe_suggest_bad_array_definition(&mut err, call_expr, callee_expr) {
671             if let Some((maybe_def, output_ty, _)) =
672                 self.extract_callable_info(callee_expr, callee_ty)
673                 && !self.type_is_sized_modulo_regions(self.param_env, output_ty, callee_expr.span)
674             {
675                 let descr = match maybe_def {
676                     DefIdOrName::DefId(def_id) => self.tcx.def_kind(def_id).descr(def_id),
677                     DefIdOrName::Name(name) => name,
678                 };
679                 err.span_label(
680                     callee_expr.span,
681                     format!("this {descr} returns an unsized value `{output_ty}`, so it cannot be called")
682                 );
683                 if let DefIdOrName::DefId(def_id) = maybe_def
684                     && let Some(def_span) = self.tcx.hir().span_if_local(def_id)
685                 {
686                     err.span_label(def_span, "the callable type is defined here");
687                 }
688             } else {
689                 err.span_label(call_expr.span, "call expression requires function");
690             }
691         }
692
693         if let Some(span) = self.tcx.hir().res_span(def) {
694             let callee_ty = callee_ty.to_string();
695             let label = match (unit_variant, inner_callee_path) {
696                 (Some((_, kind, path)), _) => Some(format!("{kind} `{path}` defined here")),
697                 (_, Some(hir::QPath::Resolved(_, path))) => self
698                     .tcx
699                     .sess
700                     .source_map()
701                     .span_to_snippet(path.span)
702                     .ok()
703                     .map(|p| format!("`{p}` defined here returns `{callee_ty}`")),
704                 _ => {
705                     match def {
706                         // Emit a different diagnostic for local variables, as they are not
707                         // type definitions themselves, but rather variables *of* that type.
708                         Res::Local(hir_id) => Some(format!(
709                             "`{}` has type `{}`",
710                             self.tcx.hir().name(hir_id),
711                             callee_ty
712                         )),
713                         Res::Def(kind, def_id) if kind.ns() == Some(Namespace::ValueNS) => {
714                             Some(format!("`{}` defined here", self.tcx.def_path_str(def_id),))
715                         }
716                         _ => Some(format!("`{callee_ty}` defined here")),
717                     }
718                 }
719             };
720             if let Some(label) = label {
721                 err.span_label(span, label);
722             }
723         }
724         err.emit();
725     }
726
727     fn confirm_deferred_closure_call(
728         &self,
729         call_expr: &'tcx hir::Expr<'tcx>,
730         arg_exprs: &'tcx [hir::Expr<'tcx>],
731         expected: Expectation<'tcx>,
732         closure_def_id: LocalDefId,
733         fn_sig: ty::FnSig<'tcx>,
734     ) -> Ty<'tcx> {
735         // `fn_sig` is the *signature* of the closure being called. We
736         // don't know the full details yet (`Fn` vs `FnMut` etc), but we
737         // do know the types expected for each argument and the return
738         // type.
739
740         let expected_arg_tys = self.expected_inputs_for_expected_output(
741             call_expr.span,
742             expected,
743             fn_sig.output(),
744             fn_sig.inputs(),
745         );
746
747         self.check_argument_types(
748             call_expr.span,
749             call_expr,
750             fn_sig.inputs(),
751             expected_arg_tys,
752             arg_exprs,
753             fn_sig.c_variadic,
754             TupleArgumentsFlag::TupleArguments,
755             Some(closure_def_id.to_def_id()),
756         );
757
758         fn_sig.output()
759     }
760
761     fn confirm_overloaded_call(
762         &self,
763         call_expr: &'tcx hir::Expr<'tcx>,
764         arg_exprs: &'tcx [hir::Expr<'tcx>],
765         expected: Expectation<'tcx>,
766         method_callee: MethodCallee<'tcx>,
767     ) -> Ty<'tcx> {
768         let output_type = self.check_method_argument_types(
769             call_expr.span,
770             call_expr,
771             Ok(method_callee),
772             arg_exprs,
773             TupleArgumentsFlag::TupleArguments,
774             expected,
775         );
776
777         self.write_method_call(call_expr.hir_id, method_callee);
778         output_type
779     }
780 }
781
782 #[derive(Debug)]
783 pub struct DeferredCallResolution<'tcx> {
784     call_expr: &'tcx hir::Expr<'tcx>,
785     callee_expr: &'tcx hir::Expr<'tcx>,
786     adjusted_ty: Ty<'tcx>,
787     adjustments: Vec<Adjustment<'tcx>>,
788     fn_sig: ty::FnSig<'tcx>,
789     closure_substs: SubstsRef<'tcx>,
790 }
791
792 impl<'a, 'tcx> DeferredCallResolution<'tcx> {
793     pub fn resolve(self, fcx: &FnCtxt<'a, 'tcx>) {
794         debug!("DeferredCallResolution::resolve() {:?}", self);
795
796         // we should not be invoked until the closure kind has been
797         // determined by upvar inference
798         assert!(fcx.closure_kind(self.closure_substs).is_some());
799
800         // We may now know enough to figure out fn vs fnmut etc.
801         match fcx.try_overloaded_call_traits(self.call_expr, self.adjusted_ty, None) {
802             Some((autoref, method_callee)) => {
803                 // One problem is that when we get here, we are going
804                 // to have a newly instantiated function signature
805                 // from the call trait. This has to be reconciled with
806                 // the older function signature we had before. In
807                 // principle we *should* be able to fn_sigs(), but we
808                 // can't because of the annoying need for a TypeTrace.
809                 // (This always bites me, should find a way to
810                 // refactor it.)
811                 let method_sig = method_callee.sig;
812
813                 debug!("attempt_resolution: method_callee={:?}", method_callee);
814
815                 for (method_arg_ty, self_arg_ty) in
816                     iter::zip(method_sig.inputs().iter().skip(1), self.fn_sig.inputs())
817                 {
818                     fcx.demand_eqtype(self.call_expr.span, *self_arg_ty, *method_arg_ty);
819                 }
820
821                 fcx.demand_eqtype(self.call_expr.span, method_sig.output(), self.fn_sig.output());
822
823                 let mut adjustments = self.adjustments;
824                 adjustments.extend(autoref);
825                 fcx.apply_adjustments(self.callee_expr, adjustments);
826
827                 fcx.write_method_call(self.call_expr.hir_id, method_callee);
828             }
829             None => {
830                 // This can happen if `#![no_core]` is used and the `fn/fn_mut/fn_once`
831                 // lang items are not defined (issue #86238).
832                 let mut err = fcx.inh.tcx.sess.struct_span_err(
833                     self.call_expr.span,
834                     "failed to find an overloaded call trait for closure call",
835                 );
836                 err.help(
837                     "make sure the `fn`/`fn_mut`/`fn_once` lang items are defined \
838                      and have associated `call`/`call_mut`/`call_once` functions",
839                 );
840                 err.emit();
841             }
842         }
843     }
844 }