@@ -241,6 +241,9 @@ language_item_table! {
241241 FusedIterator , sym:: fused_iterator, fused_iterator_trait, Target :: Trait , GenericRequirement :: Exact ( 0 ) ;
242242 Future , sym:: future_trait, future_trait, Target :: Trait , GenericRequirement :: Exact ( 0 ) ;
243243 FutureOutput , sym:: future_output, future_output, Target :: AssocTy , GenericRequirement :: Exact ( 0 ) ;
244+ IntoFuture , sym:: into_future, into_future_trait, Target :: Trait , GenericRequirement :: Exact ( 0 ) ;
245+ IntoFutureOutput , sym:: into_future_output, into_future_output, Target :: AssocTy , GenericRequirement :: Exact ( 0 ) ;
246+ IntoFutureIntoFuture , sym:: into_future_into_future, into_future_fn, Target :: Method ( MethodKind :: Trait { body: false } ) , GenericRequirement :: None ;
244247 AsyncIterator , sym:: async_iterator, async_iterator_trait, Target :: Trait , GenericRequirement :: Exact ( 0 ) ;
245248
246249 CoroutineState , sym:: coroutine_state, coroutine_state, Target :: Enum , GenericRequirement :: None ;
@@ -377,7 +380,6 @@ language_item_table! {
377380 ControlFlowContinue , sym:: Continue , cf_continue_variant, Target :: Variant , GenericRequirement :: None ;
378381 ControlFlowBreak , sym:: Break , cf_break_variant, Target :: Variant , GenericRequirement :: None ;
379382
380- IntoFutureIntoFuture , sym:: into_future, into_future_fn, Target :: Method ( MethodKind :: Trait { body: false } ) , GenericRequirement :: None ;
381383 IntoIterIntoIter , sym:: into_iter, into_iter_fn, Target :: Method ( MethodKind :: Trait { body: false } ) , GenericRequirement :: None ;
382384 IteratorNext , sym:: next, next_fn, Target :: Method ( MethodKind :: Trait { body: false } ) , GenericRequirement :: None ;
383385
0 commit comments