Skip to content

Commit dec8c03

Browse files
committed
Add tracking issue for array_assume_init
1 parent 72a3dee commit dec8c03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/mem/maybe_uninit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ impl<T> MaybeUninit<T> {
830830
///
831831
/// assert_eq!(array, [0, 1, 2]);
832832
/// ```
833-
#[unstable(feature = "maybe_uninit_array_assume_init", issue = "none")]
833+
#[unstable(feature = "maybe_uninit_array_assume_init", issue = "80908")]
834834
#[inline(always)]
835835
pub unsafe fn array_assume_init<const N: usize>(array: [Self; N]) -> [T; N] {
836836
// Convert using a union because mem::transmute does not support const_generics

0 commit comments

Comments
 (0)