summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/core/src/tuple.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/tuple.rs b/library/core/src/tuple.rs
index c46c49547f6..2a8403c85a4 100644
--- a/library/core/src/tuple.rs
+++ b/library/core/src/tuple.rs
@@ -101,7 +101,7 @@ macro_rules! tuple_impls {
             }
         }
 
-        #[stable(feature = "array_tuple_conv", since = "1.63.0")]
+        #[stable(feature = "array_tuple_conv", since = "CURRENT_RUSTC_VERSION")]
         impl<T> From<[T; ${count(T)}]> for ($(${ignore(T)} T,)+) {
             #[inline]
             #[allow(non_snake_case)]
@@ -111,7 +111,7 @@ macro_rules! tuple_impls {
             }
         }
 
-        #[stable(feature = "array_tuple_conv", since = "1.63.0")]
+        #[stable(feature = "array_tuple_conv", since = "CURRENT_RUSTC_VERSION")]
         impl<T> From<($(${ignore(T)} T,)+)> for [T; ${count(T)}] {
             #[inline]
             #[allow(non_snake_case)]