Skip to content

Commit ab55d9b

Browse files
committed
change attribute to stable
1 parent 5030794 commit ab55d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/liballoc/boxed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<Box<U>> for Box<T> {}
700700
#[unstable(feature = "dispatch_from_dyn", issue = "0")]
701701
impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Box<U>> for Box<T> {}
702702

703-
#[unstable(feature = "boxed_slice_from_iter", issue = "0")]
703+
#[stable(feature = "boxed_slice_from_iter", since = "1.32.0")]
704704
impl<A> FromIterator<A> for Box<[A]> {
705705
fn from_iter<T: IntoIterator<Item = A>>(iter: T) -> Self {
706706
iter.into_iter().collect::<Vec<_>>().into_boxed_slice()

0 commit comments

Comments
 (0)