diff options
| author | CoffeeBlend <jonasboettiger@icloud.com> | 2021-01-11 10:07:29 +0100 |
|---|---|---|
| committer | CoffeeBlend <jonasboettiger@icloud.com> | 2021-01-11 10:07:29 +0100 |
| commit | dec8c033a3d3287cdb9e0b9f4888b21bbb86d60c (patch) | |
| tree | c84ea33181c56e15e18360744e797a621064ee98 | |
| parent | 72a3dee16f6c854fc61d475581b4730189984fa5 (diff) | |
| download | rust-dec8c033a3d3287cdb9e0b9f4888b21bbb86d60c.tar.gz rust-dec8c033a3d3287cdb9e0b9f4888b21bbb86d60c.zip | |
Add tracking issue for array_assume_init
| -rw-r--r-- | library/core/src/mem/maybe_uninit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/mem/maybe_uninit.rs b/library/core/src/mem/maybe_uninit.rs index a39f9346637..3d96ad32a12 100644 --- a/library/core/src/mem/maybe_uninit.rs +++ b/library/core/src/mem/maybe_uninit.rs @@ -830,7 +830,7 @@ impl<T> MaybeUninit<T> { /// /// assert_eq!(array, [0, 1, 2]); /// ``` - #[unstable(feature = "maybe_uninit_array_assume_init", issue = "none")] + #[unstable(feature = "maybe_uninit_array_assume_init", issue = "80908")] #[inline(always)] pub unsafe fn array_assume_init<const N: usize>(array: [Self; N]) -> [T; N] { // Convert using a union because mem::transmute does not support const_generics |
