diff --git a/src/libcore/mem.rs b/src/libcore/mem.rs index 2a493e88fe896..ce856628318b8 100644 --- a/src/libcore/mem.rs +++ b/src/libcore/mem.rs @@ -1149,14 +1149,6 @@ impl MaybeUninit { ManuallyDrop::into_inner(self.value) } - /// Deprecated alternative to `into_initialized`. Will never get stabilized. - /// Exists only to transition stdsimd to `into_initialized`. - #[inline(always)] - #[allow(unused)] - pub(crate) unsafe fn into_inner(self) -> T { - self.into_initialized() - } - /// Gets a reference to the contained value. /// /// # Unsafety