Fixup "since" dates for array_tuple_conv feature

This commit is contained in:
Maybe Waffle 2023-05-04 18:25:21 +00:00
parent 6f8c0557e0
commit ad0388df5e

View File

@ -101,7 +101,7 @@ fn default() -> ($($T,)+) {
}
}
#[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 @@ fn default() -> ($($T,)+) {
}
}
#[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)]