about summary refs log tree commit diff
diff options
context:
space:
mode:
authorfren_gor <goro@frengor.com>2022-03-09 21:12:07 +0100
committerfren_gor <goro@frengor.com>2022-03-09 21:12:07 +0100
commit63eddb3e68355c3c6739b6fa3c3d37f106408922 (patch)
tree579cd603b4b8965540ab78142953ad5dc494b9ad
parent04b3162764516aa2295d4d549969bae60b5d0cf9 (diff)
downloadrust-63eddb3e68355c3c6739b6fa3c3d37f106408922.tar.gz
rust-63eddb3e68355c3c6739b6fa3c3d37f106408922.zip
Add tracking issue
-rw-r--r--library/core/src/iter/traits/iterator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/iter/traits/iterator.rs b/library/core/src/iter/traits/iterator.rs
index 9b22023b09e..458f6903c02 100644
--- a/library/core/src/iter/traits/iterator.rs
+++ b/library/core/src/iter/traits/iterator.rs
@@ -1921,7 +1921,7 @@ pub trait Iterator {
     /// println!("Vec len now is {}", count);
     /// ```
     #[inline]
-    #[unstable(feature = "iter_collect_into", reason = "new API", issue = "none")]
+    #[unstable(feature = "iter_collect_into", reason = "new API", issue = "94780")]
     fn collect_into<E: Extend<Self::Item>>(self, collection: &mut E) -> &mut E
     where
         Self: Sized,