File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 112
112
#![ feature( rustc_const_unstable) ]
113
113
#![ feature( const_vec_new) ]
114
114
#![ feature( slice_partition_dedup) ]
115
- #![ feature( maybe_uninit, maybe_uninit_slice) ]
115
+ #![ feature( maybe_uninit, maybe_uninit_slice, maybe_uninit_array ) ]
116
116
#![ feature( alloc_layout_extra) ]
117
117
#![ feature( try_trait) ]
118
118
Original file line number Diff line number Diff line change 122
122
#![ feature( structural_match) ]
123
123
#![ feature( abi_unadjusted) ]
124
124
#![ feature( adx_target_feature) ]
125
- #![ feature( maybe_uninit, maybe_uninit_slice) ]
125
+ #![ feature( maybe_uninit, maybe_uninit_slice, maybe_uninit_array ) ]
126
126
#![ feature( unrestricted_attribute_tokens) ]
127
127
128
128
#[ prelude_import]
Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ macro_rules! unimplemented {
567
567
///
568
568
/// [`MaybeUninit`]: mem/union.MaybeUninit.html
569
569
#[ macro_export]
570
- #[ unstable( feature = "maybe_uninit_slice " , issue = "53491" ) ]
570
+ #[ unstable( feature = "maybe_uninit_array " , issue = "53491" ) ]
571
571
macro_rules! uninitialized_array {
572
572
// This `into_initialized` is safe because an array of `MaybeUninit` does not
573
573
// require initialization.
You can’t perform that action at this time.
0 commit comments