From 63eddb3e68355c3c6739b6fa3c3d37f106408922 Mon Sep 17 00:00:00 2001 From: fren_gor Date: Wed, 9 Mar 2022 21:12:07 +0100 Subject: [PATCH] Add tracking issue --- library/core/src/iter/traits/iterator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/iter/traits/iterator.rs b/library/core/src/iter/traits/iterator.rs index 9b22023b09e3e..458f6903c0248 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>(self, collection: &mut E) -> &mut E where Self: Sized,