about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorWim Looman <wim@nemo157.com>2019-07-04 12:55:23 +0200
committerWim Looman <wim@nemo157.com>2019-07-04 12:57:34 +0200
commit55bd2140a23eb164a6b3bb6b7014e7ad757994f3 (patch)
tree6fb26a7e30ef0fd61bbc5a4f5dd04a7494605729 /src/liballoc
parentb43eb4235ac43c822d903ad26ed806f34cc1a14a (diff)
downloadrust-55bd2140a23eb164a6b3bb6b7014e7ad757994f3.tar.gz
rust-55bd2140a23eb164a6b3bb6b7014e7ad757994f3.zip
Add tracking issue for Box::into_pin
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/boxed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index 41966360377..01dee0a3943 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -320,7 +320,7 @@ impl<T: ?Sized> Box<T> {
     /// This conversion does not allocate on the heap and happens in place.
     ///
     /// This is also available via [`From`].
-    #[unstable(feature = "box_into_pin", issue = "0")]
+    #[unstable(feature = "box_into_pin", issue = "62370")]
     pub fn into_pin(boxed: Box<T>) -> Pin<Box<T>> {
         // It's not possible to move or replace the insides of a `Pin<Box<T>>`
         // when `T: !Unpin`,  so it's safe to pin it directly without any