@@ -14,6 +14,8 @@ use crate::ty::{AssocItemContainer, GenericArgsRef, Instance, Ty, TyCtxt, Typing
14
14
pub enum CallDesugaringKind {
15
15
/// for _ in x {} calls x.into_iter()
16
16
ForLoopIntoIter ,
17
+ /// for _ in x {} calls iter.next()
18
+ ForLoopNext ,
17
19
/// x? calls x.branch()
18
20
QuestionBranch ,
19
21
/// x? calls type_of(x)::from_residual()
@@ -28,6 +30,7 @@ impl CallDesugaringKind {
28
30
pub fn trait_def_id ( self , tcx : TyCtxt < ' _ > ) -> DefId {
29
31
match self {
30
32
Self :: ForLoopIntoIter => tcx. get_diagnostic_item ( sym:: IntoIterator ) . unwrap ( ) ,
33
+ Self :: ForLoopNext => tcx. require_lang_item ( LangItem :: Iterator , None ) ,
31
34
Self :: QuestionBranch | Self :: TryBlockFromOutput => {
32
35
tcx. require_lang_item ( LangItem :: Try , None )
33
36
}
@@ -121,6 +124,10 @@ pub fn call_kind<'tcx>(
121
124
&& fn_call_span. desugaring_kind ( ) == Some ( DesugaringKind :: ForLoop )
122
125
{
123
126
Some ( ( CallDesugaringKind :: ForLoopIntoIter , method_args. type_at ( 0 ) ) )
127
+ } else if tcx. is_lang_item ( method_did, LangItem :: IteratorNext )
128
+ && fn_call_span. desugaring_kind ( ) == Some ( DesugaringKind :: ForLoop )
129
+ {
130
+ Some ( ( CallDesugaringKind :: ForLoopNext , method_args. type_at ( 0 ) ) )
124
131
} else if fn_call_span. desugaring_kind ( ) == Some ( DesugaringKind :: QuestionMark ) {
125
132
if tcx. is_lang_item ( method_did, LangItem :: TryTraitBranch ) {
126
133
Some ( ( CallDesugaringKind :: QuestionBranch , method_args. type_at ( 0 ) ) )
0 commit comments