Skip to content

Commit b6cfaeb

Browse files
authored
Rollup merge of rust-lang#131274 - workingjubilee:stabilize-the-one-that-got-away, r=scottmcm
library: Const-stabilize `MaybeUninit::assume_init_mut` FCP completed in rust-lang#86722 (comment) Also moves const-ness of an unstable fn under the `maybe_uninit_slice` gate, Cc rust-lang#63569
2 parents 6d8235e + b7c90c6 commit b6cfaeb

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

core/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@
128128
#![feature(const_ipv6)]
129129
#![feature(const_likely)]
130130
#![feature(const_make_ascii)]
131-
#![feature(const_maybe_uninit_assume_init)]
132131
#![feature(const_nonnull_new)]
133132
#![feature(const_num_midpoint)]
134133
#![feature(const_option_ext)]

core/src/mem/maybe_uninit.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,11 @@ impl<T> MaybeUninit<T> {
913913
/// };
914914
/// ```
915915
#[stable(feature = "maybe_uninit_ref", since = "1.55.0")]
916-
#[rustc_const_unstable(feature = "const_maybe_uninit_assume_init", issue = "none")]
916+
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_mut_refs))]
917+
#[rustc_const_stable(
918+
feature = "const_maybe_uninit_assume_init",
919+
since = "CURRENT_RUSTC_VERSION"
920+
)]
917921
#[inline(always)]
918922
pub const unsafe fn assume_init_mut(&mut self) -> &mut T {
919923
// SAFETY: the caller must guarantee that `self` is initialized.
@@ -999,7 +1003,8 @@ impl<T> MaybeUninit<T> {
9991003
///
10001004
/// [`assume_init_mut`]: MaybeUninit::assume_init_mut
10011005
#[unstable(feature = "maybe_uninit_slice", issue = "63569")]
1002-
#[rustc_const_unstable(feature = "const_maybe_uninit_assume_init", issue = "none")]
1006+
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_mut_refs))]
1007+
#[rustc_const_unstable(feature = "maybe_uninit_slice", issue = "63569")]
10031008
#[inline(always)]
10041009
pub const unsafe fn slice_assume_init_mut(slice: &mut [Self]) -> &mut [T] {
10051010
// SAFETY: similar to safety notes for `slice_get_ref`, but we have a

0 commit comments

Comments
 (0)