@@ -1097,7 +1097,7 @@ fn external_generic_args(
1097
1097
substs : SubstsRef < ' _ > ,
1098
1098
) -> GenericArgs {
1099
1099
let mut skip_self = has_self;
1100
- let mut first_ty_sty = None ;
1100
+ let mut ty_sty = None ;
1101
1101
let args: Vec < _ > = substs. iter ( ) . filter_map ( |kind| match kind. unpack ( ) {
1102
1102
UnpackedKind :: Lifetime ( lt) => {
1103
1103
lt. clean ( cx) . and_then ( |lt| Some ( GenericArg :: Lifetime ( lt) ) )
@@ -1107,7 +1107,7 @@ fn external_generic_args(
1107
1107
None
1108
1108
}
1109
1109
UnpackedKind :: Type ( ty) => {
1110
- first_ty_sty = Some ( & ty. sty ) ;
1110
+ ty_sty = Some ( & ty. sty ) ;
1111
1111
Some ( GenericArg :: Type ( ty. clean ( cx) ) )
1112
1112
}
1113
1113
UnpackedKind :: Const ( ct) => Some ( GenericArg :: Const ( ct. clean ( cx) ) ) ,
@@ -1116,8 +1116,8 @@ fn external_generic_args(
1116
1116
match trait_did {
1117
1117
// Attempt to sugar an external path like Fn<(A, B,), C> to Fn(A, B) -> C
1118
1118
Some ( did) if cx. tcx . lang_items ( ) . fn_trait_kind ( did) . is_some ( ) => {
1119
- assert ! ( first_ty_sty . is_some( ) ) ;
1120
- let inputs = match first_ty_sty {
1119
+ assert ! ( ty_sty . is_some( ) ) ;
1120
+ let inputs = match ty_sty {
1121
1121
Some ( ty:: Tuple ( ref tys) ) => tys. iter ( ) . map ( |t| t. clean ( cx) ) . collect ( ) ,
1122
1122
_ => return GenericArgs :: AngleBracketed { args, bindings } ,
1123
1123
} ;
0 commit comments