Skip to content

Commit ab693f7

Browse files
authored
Rollup merge of #111213 - WaffleLapkin:fixup_dates, r=scottmcm
Fixup "since" dates for `array_tuple_conv` feature Fixes a mistake from #97594
2 parents 32f7016 + ad0388d commit ab693f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/tuple.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ macro_rules! tuple_impls {
101101
}
102102
}
103103

104-
#[stable(feature = "array_tuple_conv", since = "1.63.0")]
104+
#[stable(feature = "array_tuple_conv", since = "CURRENT_RUSTC_VERSION")]
105105
impl<T> From<[T; ${count(T)}]> for ($(${ignore(T)} T,)+) {
106106
#[inline]
107107
#[allow(non_snake_case)]
@@ -111,7 +111,7 @@ macro_rules! tuple_impls {
111111
}
112112
}
113113

114-
#[stable(feature = "array_tuple_conv", since = "1.63.0")]
114+
#[stable(feature = "array_tuple_conv", since = "CURRENT_RUSTC_VERSION")]
115115
impl<T> From<($(${ignore(T)} T,)+)> for [T; ${count(T)}] {
116116
#[inline]
117117
#[allow(non_snake_case)]

0 commit comments

Comments
 (0)