@@ -100,9 +100,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
100
100
ty : Ty < ' tcx > ,
101
101
span : Span ,
102
102
unsatisfied_predicates : & Vec < (
103
- ty:: Predicate < ' _ > ,
104
- Option < ty:: Predicate < ' _ > > ,
105
- Option < ObligationCause < ' _ > > ,
103
+ ty:: Predicate < ' tcx > ,
104
+ Option < ty:: Predicate < ' tcx > > ,
105
+ Option < ObligationCause < ' tcx > > ,
106
106
) > ,
107
107
) -> bool {
108
108
fn predicate_bounds_generic_param < ' tcx > (
@@ -131,15 +131,17 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
131
131
}
132
132
}
133
133
134
- fn is_iterator_predicate ( predicate : ty:: Predicate < ' _ > , tcx : TyCtxt < ' _ > ) -> bool {
134
+ let is_iterator_predicate = | predicate : ty:: Predicate < ' tcx > | -> bool {
135
135
if let ty:: PredicateKind :: Clause ( ty:: ClauseKind :: Trait ( trait_pred) ) =
136
136
predicate. kind ( ) . as_ref ( ) . skip_binder ( )
137
137
{
138
- tcx. is_diagnostic_item ( sym:: Iterator , trait_pred. trait_ref . def_id )
138
+ self . tcx . is_diagnostic_item ( sym:: Iterator , trait_pred. trait_ref . def_id )
139
+ // ignore unsatisfied predicates generated from trying to auto-ref ty (#127511)
140
+ && trait_pred. trait_ref . self_ty ( ) == ty
139
141
} else {
140
142
false
141
143
}
142
- }
144
+ } ;
143
145
144
146
// Does the `ty` implement `IntoIterator`?
145
147
let Some ( into_iterator_trait) = self . tcx . get_diagnostic_item ( sym:: IntoIterator ) else {
@@ -164,15 +166,15 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
164
166
generics,
165
167
generic_param,
166
168
self . tcx ,
167
- ) && is_iterator_predicate ( unsatisfied. 0 , self . tcx )
169
+ ) && is_iterator_predicate ( unsatisfied. 0 )
168
170
{
169
171
return true ;
170
172
}
171
173
}
172
174
}
173
175
ty:: Slice ( ..) | ty:: Adt ( ..) | ty:: Alias ( ty:: Opaque , _) => {
174
176
for unsatisfied in unsatisfied_predicates. iter ( ) {
175
- if is_iterator_predicate ( unsatisfied. 0 , self . tcx ) {
177
+ if is_iterator_predicate ( unsatisfied. 0 ) {
176
178
return true ;
177
179
}
178
180
}
0 commit comments