File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -420,14 +420,14 @@ pub use self::adapters::{Intersperse, IntersperseWith};
420
420
issue = "42168"
421
421
) ]
422
422
pub use self :: range:: Step ;
423
+ #[ stable( feature = "iter_empty" , since = "1.2.0" ) ]
424
+ pub use self :: sources:: { Empty , empty} ;
423
425
#[ unstable(
424
426
feature = "iter_from_coroutine" ,
425
427
issue = "43122" ,
426
428
reason = "coroutines are unstable"
427
429
) ]
428
- pub use self :: sources:: from_coroutine;
429
- #[ stable( feature = "iter_empty" , since = "1.2.0" ) ]
430
- pub use self :: sources:: { Empty , empty} ;
430
+ pub use self :: sources:: { FromCoroutine , from_coroutine} ;
431
431
#[ stable( feature = "iter_from_fn" , since = "1.34.0" ) ]
432
432
pub use self :: sources:: { FromFn , from_fn} ;
433
433
#[ stable( feature = "iter_once" , since = "1.2.0" ) ]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ pub use self::empty::{Empty, empty};
15
15
issue = "43122" ,
16
16
reason = "coroutines are unstable"
17
17
) ]
18
- pub use self :: from_coroutine:: from_coroutine;
18
+ pub use self :: from_coroutine:: { FromCoroutine , from_coroutine} ;
19
19
#[ stable( feature = "iter_from_fn" , since = "1.34.0" ) ]
20
20
pub use self :: from_fn:: { FromFn , from_fn} ;
21
21
#[ stable( feature = "iter_once" , since = "1.2.0" ) ]
You can’t perform that action at this time.
0 commit comments