We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3fc45 commit 27d3935Copy full SHA for 27d3935
library/core/src/array/iter.rs
@@ -79,7 +79,7 @@ impl<T, const N: usize> IntoIterator for [T; N] {
79
impl<T, const N: usize> IntoIter<T, N> {
80
/// Creates a new iterator over the given `array`.
81
#[stable(feature = "array_value_iter", since = "1.51.0")]
82
- #[rustc_deprecated(since = "1.57.0", reason = "use `IntoIterator::into_iter` instead")]
+ #[rustc_deprecated(since = "1.59.0", reason = "use `IntoIterator::into_iter` instead")]
83
pub fn new(array: [T; N]) -> Self {
84
IntoIterator::into_iter(array)
85
}
0 commit comments