about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index 921c0427959..9f30ca29c03 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -2397,7 +2397,7 @@ impl<T: Clone> From<&mut [T]> for Vec<T> {
     }
 }
 
-#[stable(feature = "vec_from_array", since = "1.42.0")]
+#[stable(feature = "vec_from_array", since = "1.44.0")]
 impl<T, const N: usize> From<[T; N]> for Vec<T>
 where
     [T; N]: LengthAtMost32,