@@ -15,8 +15,7 @@ use rustc_lint::LateContext;
15
15
use rustc_middle:: mir:: Mutability ;
16
16
use rustc_middle:: ty:: adjustment:: { Adjust , Adjustment , OverloadedDeref } ;
17
17
use rustc_middle:: ty:: {
18
- self , ClauseKind , EarlyBinder , GenericArg , GenericArgKind , GenericArgsRef , ParamTy , ProjectionPredicate ,
19
- TraitPredicate , Ty ,
18
+ self , ClauseKind , GenericArg , GenericArgKind , GenericArgsRef , ParamTy , ProjectionPredicate , TraitPredicate , Ty ,
20
19
} ;
21
20
use rustc_span:: { sym, Symbol } ;
22
21
use rustc_trait_selection:: traits:: query:: evaluate_obligation:: InferCtxtExt as _;
@@ -359,6 +358,7 @@ fn get_input_traits_and_projections<'tcx>(
359
358
( trait_predicates, projection_predicates)
360
359
}
361
360
361
+ #[ expect( clippy:: too_many_lines) ]
362
362
fn can_change_type < ' a > ( cx : & LateContext < ' a > , mut expr : & ' a Expr < ' a > , mut ty : Ty < ' a > ) -> bool {
363
363
for ( _, node) in cx. tcx . hir ( ) . parent_iter ( expr. hir_id ) {
364
364
match node {
@@ -387,22 +387,21 @@ fn can_change_type<'a>(cx: &LateContext<'a>, mut expr: &'a Expr<'a>, mut ty: Ty<
387
387
if let Some ( ( callee_def_id, call_generic_args, recv, call_args) ) =
388
388
get_callee_generic_args_and_args ( cx, parent_expr)
389
389
{
390
- // FIXME: the `instantiate_identity()` below seems incorrect, since we eventually
391
- // call `tcx.try_instantiate_and_normalize_erasing_regions` further down
392
- // (i.e., we are explicitly not in the identity context).
393
- let fn_sig = cx. tcx . fn_sig ( callee_def_id) . instantiate_identity ( ) . skip_binder ( ) ;
390
+ let bound_fn_sig = cx. tcx . fn_sig ( callee_def_id) ;
391
+ let fn_sig = bound_fn_sig. skip_binder ( ) ;
394
392
if let Some ( arg_index) = recv. into_iter ( ) . chain ( call_args) . position ( |arg| arg. hir_id == expr. hir_id )
395
- && let Some ( param_ty) = fn_sig. inputs ( ) . get ( arg_index )
396
- && let ty:: Param ( ParamTy { index : param_index , ..} ) = param_ty. kind ( )
393
+ && let param_ty = fn_sig. input ( arg_index ) . skip_binder ( )
394
+ && let ty:: Param ( ParamTy { index : param_index , ..} ) = * param_ty. kind ( )
397
395
// https://github.com/rust-lang/rust-clippy/issues/9504 and https://github.com/rust-lang/rust-clippy/issues/10021
398
- && ( * param_index as usize ) < call_generic_args. len ( )
396
+ && ( param_index as usize ) < call_generic_args. len ( )
399
397
{
400
398
if fn_sig
399
+ . skip_binder ( )
401
400
. inputs ( )
402
401
. iter ( )
403
402
. enumerate ( )
404
403
. filter ( |( i, _) | * i != arg_index)
405
- . any ( |( _, ty) | ty. contains ( * param_ty) )
404
+ . any ( |( _, ty) | ty. contains ( param_ty) )
406
405
{
407
406
return false ;
408
407
}
@@ -414,7 +413,7 @@ fn can_change_type<'a>(cx: &LateContext<'a>, mut expr: &'a Expr<'a>, mut ty: Ty<
414
413
. iter ( )
415
414
. filter ( |predicate| {
416
415
if let ClauseKind :: Trait ( trait_predicate) = predicate. kind ( ) . skip_binder ( )
417
- && trait_predicate. trait_ref . self_ty ( ) == * param_ty
416
+ && trait_predicate. trait_ref . self_ty ( ) == param_ty
418
417
{
419
418
true
420
419
} else {
@@ -425,15 +424,15 @@ fn can_change_type<'a>(cx: &LateContext<'a>, mut expr: &'a Expr<'a>, mut ty: Ty<
425
424
let new_subst = cx
426
425
. tcx
427
426
. mk_args_from_iter ( call_generic_args. iter ( ) . enumerate ( ) . map ( |( i, t) | {
428
- if i == ( * param_index as usize ) {
427
+ if i == param_index as usize {
429
428
GenericArg :: from ( ty)
430
429
} else {
431
430
t
432
431
}
433
432
} ) ) ;
434
433
435
434
if trait_predicates. any ( |predicate| {
436
- let predicate = EarlyBinder :: bind ( predicate) . instantiate ( cx. tcx , new_subst) ;
435
+ let predicate = bound_fn_sig . rebind ( predicate) . instantiate ( cx. tcx , new_subst) ;
437
436
let obligation = Obligation :: new ( cx. tcx , ObligationCause :: dummy ( ) , cx. param_env , predicate) ;
438
437
!cx. tcx
439
438
. infer_ctxt ( )
@@ -443,12 +442,12 @@ fn can_change_type<'a>(cx: &LateContext<'a>, mut expr: &'a Expr<'a>, mut ty: Ty<
443
442
return false ;
444
443
}
445
444
446
- let output_ty = fn_sig. output ( ) ;
447
- if output_ty. contains ( * param_ty) {
445
+ let output_ty = cx . tcx . instantiate_bound_regions_with_erased ( fn_sig. output ( ) ) ;
446
+ if output_ty. contains ( param_ty) {
448
447
if let Ok ( new_ty) = cx. tcx . try_instantiate_and_normalize_erasing_regions (
449
448
new_subst,
450
449
cx. param_env ,
451
- EarlyBinder :: bind ( output_ty) ,
450
+ bound_fn_sig . rebind ( output_ty) ,
452
451
) {
453
452
expr = parent_expr;
454
453
ty = new_ty;
0 commit comments