Skip to content

Commit 8c15a69

Browse files
committed
Tracking issue number for iter_macro
1 parent 3b9d04c commit 8c15a69

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

library/core/src/iter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ pub use self::adapters::{Intersperse, IntersperseWith};
420420
issue = "42168"
421421
)]
422422
pub use self::range::Step;
423-
#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
423+
#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
424424
pub use self::sources::iter;
425425
#[stable(feature = "iter_empty", since = "1.2.0")]
426426
pub use self::sources::{Empty, empty};

library/core/src/iter/sources.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub use self::empty::{Empty, empty};
1919
pub use self::from_coroutine::{FromCoroutine, from_coroutine};
2020
#[stable(feature = "iter_from_fn", since = "1.34.0")]
2121
pub use self::from_fn::{FromFn, from_fn};
22-
#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
22+
#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
2323
pub use self::generator::iter;
2424
#[stable(feature = "iter_once", since = "1.2.0")]
2525
pub use self::once::{Once, once};

library/core/src/iter/sources/generator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/// let v: Vec<_> = it.collect();
1919
/// assert_eq!(v, [1, 2, 3]);
2020
/// ```
21-
#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
21+
#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
2222
#[allow_internal_unstable(coroutines, iter_from_coroutine)]
2323
#[rustc_builtin_macro]
2424
pub macro iter($($t:tt)*) {

0 commit comments

Comments
 (0)