1
Fork 0

library: Stabilize new_uninit for Box, Rc, and Arc

A partial stabilization that only affects:
- AllocType<T>::new_uninit
- AllocType<T>::assume_init
- AllocType<[T]>::new_uninit_slice
- AllocType<[T]>::assume_init
where "AllocType" is Box, Rc, or Arc
This commit is contained in:
Jubilee Young 2024-08-21 22:22:18 -07:00
parent 600edc948a
commit 169b2f0e6d
7 changed files with 32 additions and 67 deletions

View file

@ -28,7 +28,6 @@
#![feature(decl_macro)]
#![feature(maybe_uninit_write_slice)]
#![feature(negative_impls)]
#![feature(new_uninit)]
#![feature(panic_can_unwind)]
#![feature(restricted_std)]
#![feature(rustc_attrs)]