Rollup merge of #111213 - WaffleLapkin:fixup_dates, r=scottmcm

Fixup "since" dates for `array_tuple_conv` feature

Fixes a mistake from #97594
This commit is contained in:
Yuki Okushi 2023-05-05 12:46:28 +09:00 committed by GitHub
commit 17a6c08718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)]