about summary refs log tree commit diff
path: root/library/alloc/src/vec
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2023-04-16 16:33:38 +0200
committerJosh Stone <jistone@redhat.com>2023-04-28 08:47:55 -0700
commit4e04da618391a3374ba7c37c2d4a6092aaab0927 (patch)
treeb681b4927db724c026edd709a71c32581162377b /library/alloc/src/vec
parent43a78029b4f4d92978b8fde0a677ea300b113c41 (diff)
downloadrust-4e04da618391a3374ba7c37c2d4a6092aaab0927.tar.gz
rust-4e04da618391a3374ba7c37c2d4a6092aaab0927.zip
replace version placeholders
Diffstat (limited to 'library/alloc/src/vec')
-rw-r--r--library/alloc/src/vec/into_iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/vec/into_iter.rs b/library/alloc/src/vec/into_iter.rs
index 02faf8e6389..b2db2fdfd18 100644
--- a/library/alloc/src/vec/into_iter.rs
+++ b/library/alloc/src/vec/into_iter.rs
@@ -342,7 +342,7 @@ impl<T, A: Allocator> FusedIterator for IntoIter<T, A> {}
 #[unstable(feature = "trusted_len", issue = "37572")]
 unsafe impl<T, A: Allocator> TrustedLen for IntoIter<T, A> {}
 
-#[stable(feature = "default_iters", since = "CURRENT_RUSTC_VERSION")]
+#[stable(feature = "default_iters", since = "1.70.0")]
 impl<T, A> Default for IntoIter<T, A>
 where
     A: Allocator + Default,