about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2025-06-26 20:15:30 -0400
committerGitHub <noreply@github.com>2025-06-26 20:15:30 -0400
commit434e3e5d454c3a8f92c240cb2709dc2ffb6af537 (patch)
treec86ba65484441e7f8edfed22e731a0e47e896860
parent93810c943094f06c8533609836f6b07d6ca519b7 (diff)
parent8c15a69290eed31262b5ce6f1b828c6e5e7761d9 (diff)
downloadrust-434e3e5d454c3a8f92c240cb2709dc2ffb6af537.tar.gz
rust-434e3e5d454c3a8f92c240cb2709dc2ffb6af537.zip
Rollup merge of #143067 - GrigorenkoPV:142269, r=workingjubilee
Tracking issue number for `iter_macro`

Tracking issue: rust-lang/rust#142269
-rw-r--r--library/core/src/iter/mod.rs2
-rw-r--r--library/core/src/iter/sources.rs2
-rw-r--r--library/core/src/iter/sources/generator.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/library/core/src/iter/mod.rs b/library/core/src/iter/mod.rs
index b85841295da..7ca41d224a0 100644
--- a/library/core/src/iter/mod.rs
+++ b/library/core/src/iter/mod.rs
@@ -420,7 +420,7 @@ pub use self::adapters::{Intersperse, IntersperseWith};
     issue = "42168"
 )]
 pub use self::range::Step;
-#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
+#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
 pub use self::sources::iter;
 #[stable(feature = "iter_empty", since = "1.2.0")]
 pub use self::sources::{Empty, empty};
diff --git a/library/core/src/iter/sources.rs b/library/core/src/iter/sources.rs
index fd9330201ff..8e27edb73c9 100644
--- a/library/core/src/iter/sources.rs
+++ b/library/core/src/iter/sources.rs
@@ -19,7 +19,7 @@ pub use self::empty::{Empty, empty};
 pub use self::from_coroutine::{FromCoroutine, from_coroutine};
 #[stable(feature = "iter_from_fn", since = "1.34.0")]
 pub use self::from_fn::{FromFn, from_fn};
-#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
+#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
 pub use self::generator::iter;
 #[stable(feature = "iter_once", since = "1.2.0")]
 pub use self::once::{Once, once};
diff --git a/library/core/src/iter/sources/generator.rs b/library/core/src/iter/sources/generator.rs
index 0846974d526..94d501de033 100644
--- a/library/core/src/iter/sources/generator.rs
+++ b/library/core/src/iter/sources/generator.rs
@@ -18,7 +18,7 @@
 /// let v: Vec<_> = it.collect();
 /// assert_eq!(v, [1, 2, 3]);
 /// ```
-#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
+#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
 #[allow_internal_unstable(coroutines, iter_from_coroutine)]
 #[rustc_builtin_macro]
 pub macro iter($($t:tt)*) {