about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2023-05-05 12:46:28 +0900
committerGitHub <noreply@github.com>2023-05-05 12:46:28 +0900
commit17a6c08718dff2a5bdad20a946f46fdab392ebca (patch)
tree9c43c046979adae05e0ee00dc0e972f321bc444a
parent5d85652684d386e29c8b6c6004fe9ac97d8609b6 (diff)
parentad0388df5e6ff7a354596743a09ede7e3cdb6673 (diff)
downloadrust-17a6c08718dff2a5bdad20a946f46fdab392ebca.tar.gz
rust-17a6c08718dff2a5bdad20a946f46fdab392ebca.zip
Rollup merge of #111213 - WaffleLapkin:fixup_dates, r=scottmcm
Fixup "since" dates for `array_tuple_conv` feature

Fixes a mistake from #97594
-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)]