@@ -38,6 +38,7 @@ use rustc_span::def_id::LocalDefId;
38
38
use rustc_span:: symbol:: { kw, sym, Ident , Symbol } ;
39
39
use rustc_span:: { BytePos , DesugaringKind , ExpnKind , MacroKind , Span , DUMMY_SP } ;
40
40
use rustc_target:: spec:: abi;
41
+ use std:: assert_matches:: debug_assert_matches;
41
42
use std:: borrow:: Cow ;
42
43
use std:: iter;
43
44
@@ -4219,30 +4220,25 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
4219
4220
} ;
4220
4221
4221
4222
let origin = TypeVariableOrigin { kind : TypeVariableOriginKind :: TypeInference , span } ;
4222
- let trait_def_id = proj. trait_def_id ( self . tcx ) ;
4223
4223
// Make `Self` be equivalent to the type of the call chain
4224
4224
// expression we're looking at now, so that we can tell what
4225
4225
// for example `Iterator::Item` is at this point in the chain.
4226
- let args = GenericArgs :: for_item ( self . tcx , trait_def_id, |param, _| {
4227
- match param. kind {
4228
- ty:: GenericParamDefKind :: Type { .. } => {
4229
- if param. index == 0 {
4230
- return prev_ty. into ( ) ;
4231
- }
4232
- }
4233
- ty:: GenericParamDefKind :: Lifetime | ty:: GenericParamDefKind :: Const { .. } => { }
4226
+ let args = GenericArgs :: for_item ( self . tcx , proj. def_id , |param, _| {
4227
+ if param. index == 0 {
4228
+ debug_assert_matches ! ( param. kind, ty:: GenericParamDefKind :: Type { .. } ) ;
4229
+ return prev_ty. into ( ) ;
4234
4230
}
4235
4231
self . var_for_def ( span, param)
4236
4232
} ) ;
4237
4233
// This will hold the resolved type of the associated type, if the
4238
4234
// current expression implements the trait that associated type is
4239
4235
// in. For example, this would be what `Iterator::Item` is here.
4240
- let ty_var = self . infcx . next_ty_var ( origin) ;
4236
+ let ty = self . infcx . next_ty_var ( origin) ;
4241
4237
// This corresponds to `<ExprTy as Iterator>::Item = _`.
4242
4238
let projection = ty:: Binder :: dummy ( ty:: PredicateKind :: Clause (
4243
4239
ty:: ClauseKind :: Projection ( ty:: ProjectionPredicate {
4244
4240
projection_ty : ty:: AliasTy :: new ( self . tcx , proj. def_id , args) ,
4245
- term : ty_var . into ( ) ,
4241
+ term : ty . into ( ) ,
4246
4242
} ) ,
4247
4243
) ) ;
4248
4244
let body_def_id = self . tcx . hir ( ) . enclosing_body_owner ( body_id) ;
@@ -4254,14 +4250,15 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
4254
4250
param_env,
4255
4251
projection,
4256
4252
) ) ;
4257
- if ocx. select_where_possible ( ) . is_empty ( ) {
4258
- // `ty_var` now holds the type that `Item` is for `ExprTy`.
4259
- let ty_var = self . resolve_vars_if_possible ( ty_var) ;
4260
- assocs_in_this_method. push ( Some ( ( span, ( proj. def_id , ty_var) ) ) ) ;
4253
+ if ocx. select_where_possible ( ) . is_empty ( )
4254
+ && let ty = self . resolve_vars_if_possible ( ty)
4255
+ && !ty. is_ty_var ( )
4256
+ {
4257
+ assocs_in_this_method. push ( Some ( ( span, ( proj. def_id , ty) ) ) ) ;
4261
4258
} else {
4262
4259
// `<ExprTy as Iterator>` didn't select, so likely we've
4263
4260
// reached the end of the iterator chain, like the originating
4264
- // `Vec<_>`.
4261
+ // `Vec<_>` or the `ty` couldn't be determined .
4265
4262
// Keep the space consistent for later zipping.
4266
4263
assocs_in_this_method. push ( None ) ;
4267
4264
}
0 commit comments