From dec8c033a3d3287cdb9e0b9f4888b21bbb86d60c Mon Sep 17 00:00:00 2001 From: CoffeeBlend Date: Mon, 11 Jan 2021 10:07:29 +0100 Subject: [PATCH] Add tracking issue for array_assume_init --- library/core/src/mem/maybe_uninit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 MaybeUninit { /// /// 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(array: [Self; N]) -> [T; N] { // Convert using a union because mem::transmute does not support const_generics