@@ -263,15 +263,15 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
263
263
} ) => {
264
264
let tcx = self . tcx ;
265
265
266
- let actual = self . resolve_vars_if_possible ( rcvr_ty) ;
267
- let ty_str = self . ty_to_string ( actual ) ;
266
+ let rcvr_ty = self . resolve_vars_if_possible ( rcvr_ty) ;
267
+ let ty_str = self . ty_to_string ( rcvr_ty ) ;
268
268
let is_method = mode == Mode :: MethodCall ;
269
269
let item_kind = if is_method {
270
270
"method"
271
- } else if actual . is_enum ( ) {
271
+ } else if rcvr_ty . is_enum ( ) {
272
272
"variant or associated item"
273
273
} else {
274
- match ( item_name. as_str ( ) . chars ( ) . next ( ) , actual . is_fresh_ty ( ) ) {
274
+ match ( item_name. as_str ( ) . chars ( ) . next ( ) , rcvr_ty . is_fresh_ty ( ) ) {
275
275
( Some ( name) , false ) if name. is_lowercase ( ) => "function or associated item" ,
276
276
( Some ( _) , false ) => "associated item" ,
277
277
( Some ( _) , true ) | ( None , false ) => "variant or associated item" ,
@@ -280,19 +280,19 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
280
280
} ;
281
281
282
282
if self . suggest_wrapping_range_with_parens (
283
- tcx, actual , source, span, item_name, & ty_str,
283
+ tcx, rcvr_ty , source, span, item_name, & ty_str,
284
284
) || self . suggest_constraining_numerical_ty (
285
- tcx, actual , source, span, item_kind, item_name, & ty_str,
285
+ tcx, rcvr_ty , source, span, item_kind, item_name, & ty_str,
286
286
) {
287
287
return None ;
288
288
}
289
289
span = item_name. span ;
290
290
291
291
// Don't show generic arguments when the method can't be found in any implementation (#81576).
292
292
let mut ty_str_reported = ty_str. clone ( ) ;
293
- if let ty:: Adt ( _, generics) = actual . kind ( ) {
293
+ if let ty:: Adt ( _, generics) = rcvr_ty . kind ( ) {
294
294
if generics. len ( ) > 0 {
295
- let mut autoderef = self . autoderef ( span, actual ) ;
295
+ let mut autoderef = self . autoderef ( span, rcvr_ty ) ;
296
296
let candidate_found = autoderef. any ( |( ty, _) | {
297
297
if let ty:: Adt ( adt_def, _) = ty. kind ( ) {
298
298
self . tcx
@@ -321,16 +321,16 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
321
321
"no {} named `{}` found for {} `{}` in the current scope" ,
322
322
item_kind,
323
323
item_name,
324
- actual . prefix_string( self . tcx) ,
324
+ rcvr_ty . prefix_string( self . tcx) ,
325
325
ty_str_reported,
326
326
) ;
327
- if actual . references_error ( ) {
327
+ if rcvr_ty . references_error ( ) {
328
328
err. downgrade_to_delayed_bug ( ) ;
329
329
}
330
330
331
331
if let Mode :: MethodCall = mode && let SelfSource :: MethodCall ( cal) = source {
332
332
self . suggest_await_before_method (
333
- & mut err, item_name, actual , cal, span,
333
+ & mut err, item_name, rcvr_ty , cal, span,
334
334
) ;
335
335
}
336
336
if let Some ( span) = tcx. resolutions ( ( ) ) . confused_type_with_std_module . get ( & span) {
@@ -341,7 +341,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
341
341
Applicability :: MachineApplicable ,
342
342
) ;
343
343
}
344
- if let ty:: RawPtr ( _) = & actual . kind ( ) {
344
+ if let ty:: RawPtr ( _) = & rcvr_ty . kind ( ) {
345
345
err. note (
346
346
"try using `<*const T>::as_ref()` to get a reference to the \
347
347
type behind the pointer: https://doc.rust-lang.org/std/\
@@ -353,7 +353,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
353
353
) ;
354
354
}
355
355
356
- let ty_span = match actual . kind ( ) {
356
+ let ty_span = match rcvr_ty . kind ( ) {
357
357
ty:: Param ( param_type) => Some (
358
358
param_type. span_from_generics ( self . tcx , self . body_id . owner . to_def_id ( ) ) ,
359
359
) ,
@@ -365,7 +365,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
365
365
span,
366
366
format ! (
367
367
"{item_kind} `{item_name}` not found for this {}" ,
368
- actual . prefix_string( self . tcx)
368
+ rcvr_ty . prefix_string( self . tcx)
369
369
) ,
370
370
) ;
371
371
}
@@ -406,7 +406,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
406
406
// original type that has the associated function for accurate suggestions.
407
407
// (#61411)
408
408
let ty = tcx. at ( span) . type_of ( * impl_did) ;
409
- match ( & ty. peel_refs ( ) . kind ( ) , & actual . peel_refs ( ) . kind ( ) ) {
409
+ match ( & ty. peel_refs ( ) . kind ( ) , & rcvr_ty . peel_refs ( ) . kind ( ) ) {
410
410
( ty:: Adt ( def, _) , ty:: Adt ( def_actual, substs) ) if def == def_actual => {
411
411
// If there are any inferred arguments, (`{integer}`), we should replace
412
412
// them with underscores to allow the compiler to infer them
@@ -451,7 +451,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
451
451
_ => self . ty_to_value_string ( ty. peel_refs ( ) ) ,
452
452
}
453
453
} else {
454
- self . ty_to_value_string ( actual . peel_refs ( ) )
454
+ self . ty_to_value_string ( rcvr_ty . peel_refs ( ) )
455
455
} ;
456
456
if let SelfSource :: MethodCall ( _) = source {
457
457
let first_arg = if let Some ( CandidateSource :: Impl ( impl_did) ) = static_candidates. get ( 0 ) &&
@@ -523,7 +523,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
523
523
let mut bound_spans = vec ! [ ] ;
524
524
let mut restrict_type_params = false ;
525
525
let mut unsatisfied_bounds = false ;
526
- if item_name. name == sym:: count && self . is_slice_ty ( actual , span) {
526
+ if item_name. name == sym:: count && self . is_slice_ty ( rcvr_ty , span) {
527
527
let msg = "consider using `len` instead" ;
528
528
if let SelfSource :: MethodCall ( _expr) = source {
529
529
err. span_suggestion_short (
@@ -537,7 +537,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
537
537
}
538
538
if let Some ( iterator_trait) = self . tcx . get_diagnostic_item ( sym:: Iterator ) {
539
539
let iterator_trait = self . tcx . def_path_str ( iterator_trait) ;
540
- err. note ( & format ! ( "`count` is defined on `{iterator_trait}`, which `{actual }` does not implement" ) ) ;
540
+ err. note ( & format ! ( "`count` is defined on `{iterator_trait}`, which `{rcvr_ty }` does not implement" ) ) ;
541
541
}
542
542
} else if !unsatisfied_predicates. is_empty ( ) {
543
543
let mut type_params = FxHashMap :: default ( ) ;
@@ -876,7 +876,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
876
876
. map ( |( _, path) | path)
877
877
. collect :: < Vec < _ > > ( )
878
878
. join ( "\n " ) ;
879
- let actual_prefix = actual . prefix_string ( self . tcx ) ;
879
+ let actual_prefix = rcvr_ty . prefix_string ( self . tcx ) ;
880
880
info ! ( "unimplemented_traits.len() == {}" , unimplemented_traits. len( ) ) ;
881
881
let ( primary_message, label) =
882
882
if unimplemented_traits. len ( ) == 1 && unimplemented_traits_only {
@@ -885,7 +885,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
885
885
. next ( )
886
886
. map ( |( _, ( trait_ref, obligation) ) | {
887
887
if trait_ref. self_ty ( ) . references_error ( )
888
- || actual . references_error ( )
888
+ || rcvr_ty . references_error ( )
889
889
{
890
890
// Avoid crashing.
891
891
return ( None , None ) ;
@@ -921,7 +921,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
921
921
let label_span_not_found = |err : & mut Diagnostic | {
922
922
if unsatisfied_predicates. is_empty ( ) {
923
923
err. span_label ( span, format ! ( "{item_kind} not found in `{ty_str}`" ) ) ;
924
- let is_string_or_ref_str = match actual . kind ( ) {
924
+ let is_string_or_ref_str = match rcvr_ty . kind ( ) {
925
925
ty:: Ref ( _, ty, _) => {
926
926
ty. is_str ( )
927
927
|| matches ! (
@@ -957,7 +957,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
957
957
// different from the received one
958
958
// So we avoid suggestion method with Box<Self>
959
959
// for instance
960
- self . tcx . at ( span) . type_of ( * def_id) != actual
960
+ self . tcx . at ( span) . type_of ( * def_id) != rcvr_ty
961
961
&& self . tcx . at ( span) . type_of ( * def_id) != rcvr_ty
962
962
}
963
963
( Mode :: Path , false , _) => true ,
@@ -1017,18 +1017,20 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1017
1017
// Don't suggest (for example) `expr.field.clone()` if `expr.clone()`
1018
1018
// can't be called due to `typeof(expr): Clone` not holding.
1019
1019
if unsatisfied_predicates. is_empty ( ) {
1020
- self . suggest_calling_method_on_field ( & mut err, source, span, actual, item_name) ;
1020
+ self . suggest_calling_method_on_field (
1021
+ & mut err, source, span, rcvr_ty, item_name,
1022
+ ) ;
1021
1023
}
1022
1024
1023
- self . check_for_inner_self ( & mut err, source, span, actual , item_name) ;
1025
+ self . check_for_inner_self ( & mut err, source, span, rcvr_ty , item_name) ;
1024
1026
1025
1027
bound_spans. sort ( ) ;
1026
1028
bound_spans. dedup ( ) ;
1027
1029
for ( span, msg) in bound_spans. into_iter ( ) {
1028
1030
err. span_label ( span, & msg) ;
1029
1031
}
1030
1032
1031
- if actual . is_numeric ( ) && actual . is_fresh ( ) || restrict_type_params {
1033
+ if rcvr_ty . is_numeric ( ) && rcvr_ty . is_fresh ( ) || restrict_type_params {
1032
1034
} else {
1033
1035
self . suggest_traits_to_import (
1034
1036
& mut err,
@@ -1046,8 +1048,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1046
1048
1047
1049
// Don't emit a suggestion if we found an actual method
1048
1050
// that had unsatisfied trait bounds
1049
- if unsatisfied_predicates. is_empty ( ) && actual . is_enum ( ) {
1050
- let adt_def = actual . ty_adt_def ( ) . expect ( "enum is not an ADT" ) ;
1051
+ if unsatisfied_predicates. is_empty ( ) && rcvr_ty . is_enum ( ) {
1052
+ let adt_def = rcvr_ty . ty_adt_def ( ) . expect ( "enum is not an ADT" ) ;
1051
1053
if let Some ( suggestion) = lev_distance:: find_best_match_for_name (
1052
1054
& adt_def. variants ( ) . iter ( ) . map ( |s| s. name ) . collect :: < Vec < _ > > ( ) ,
1053
1055
item_name. name ,
@@ -1062,7 +1064,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1062
1064
}
1063
1065
}
1064
1066
1065
- if item_name. name == sym:: as_str && actual . peel_refs ( ) . is_str ( ) {
1067
+ if item_name. name == sym:: as_str && rcvr_ty . peel_refs ( ) . is_str ( ) {
1066
1068
let msg = "remove this method call" ;
1067
1069
let mut fallback_span = true ;
1068
1070
if let SelfSource :: MethodCall ( expr) = source {
0 commit comments