Skip to content

Commit 866233b

Browse files
Rollup merge of #62371 - Nemo157:fix-62288, r=Centril
Add tracking issue for Box::into_pin Fixes #62288
2 parents 7854e9e + 55bd214 commit 866233b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc/boxed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ impl<T: ?Sized> Box<T> {
320320
/// This conversion does not allocate on the heap and happens in place.
321321
///
322322
/// This is also available via [`From`].
323-
#[unstable(feature = "box_into_pin", issue = "0")]
323+
#[unstable(feature = "box_into_pin", issue = "62370")]
324324
pub fn into_pin(boxed: Box<T>) -> Pin<Box<T>> {
325325
// It's not possible to move or replace the insides of a `Pin<Box<T>>`
326326
// when `T: !Unpin`, so it's safe to pin it directly without any

0 commit comments

Comments
 (0)