Skip to content

Commit

Permalink
Rollup merge of #111213 - WaffleLapkin:fixup_dates, r=scottmcm
Browse files Browse the repository at this point in the history
Fixup "since" dates for `array_tuple_conv` feature

Fixes a mistake from #97594
  • Loading branch information
matthiaskrgr committed May 4, 2023
2 parents 32f7016 + ad0388d commit ab693f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/core/src/tuple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand All @@ -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)]
Expand Down

0 comments on commit ab693f7

Please sign in to comment.