diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-07-05 13:53:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-05 13:53:10 +0200 |
| commit | ccd925bc7d03f50f0eeadef4146130bafce921ab (patch) | |
| tree | fd4d38afa685eea5c9ed3c134117e86e0b9ee179 /src/liballoc | |
| parent | 7d6e43177cbf6112822c6e5e9e7950947c45b134 (diff) | |
| parent | 55bd2140a23eb164a6b3bb6b7014e7ad757994f3 (diff) | |
| download | rust-ccd925bc7d03f50f0eeadef4146130bafce921ab.tar.gz rust-ccd925bc7d03f50f0eeadef4146130bafce921ab.zip | |
Rollup merge of #62371 - Nemo157:fix-62288, r=Centril
Add tracking issue for Box::into_pin Fixes #62288
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/boxed.rs | 2 |
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 |
