From 66e0523d09b01616e85565b35f97c99cc0bb2136 Mon Sep 17 00:00:00 2001 From: Linda_pp Date: Sat, 20 Nov 2021 23:35:28 +0900 Subject: [PATCH] Update version in `stable` attribute Co-authored-by: Joshua Nelson --- library/core/src/array/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index eadf6fd9a4f..700fa7f4e2d 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -176,7 +176,7 @@ where } } -#[stable(feature = "try_from_mut_slice_to_array", since = "1.57.0")] +#[stable(feature = "try_from_mut_slice_to_array", since = "1.58.0")] impl TryFrom<&mut [T]> for [T; N] where T: Copy,