diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index e1e9617b491..63b262d1f3d 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -700,7 +700,7 @@ impl, U: ?Sized> CoerceUnsized> for Box {} #[unstable(feature = "dispatch_from_dyn", issue = "0")] impl, U: ?Sized> DispatchFromDyn> for Box {} -#[unstable(feature = "boxed_slice_from_iter", issue = "0")] +#[stable(feature = "boxed_slice_from_iter", since = "1.32.0")] impl FromIterator for Box<[A]> { fn from_iter>(iter: T) -> Self { iter.into_iter().collect::>().into_boxed_slice()