about summary refs log tree commit diff
path: root/compiler/rustc_index/src
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2024-08-21 22:32:03 -0700
committerJubilee Young <workingjubilee@gmail.com>2024-08-23 20:52:02 -0700
commit9ccd7abefeba2bde9e3366b5bb3985375fb0b8e6 (patch)
treeac28c542d58b7306171ceb00a20e83f177289623 /compiler/rustc_index/src
parenta32d4a0e822a29a6682e08b75a8df4c29c7fa9f1 (diff)
downloadrust-9ccd7abefeba2bde9e3366b5bb3985375fb0b8e6.tar.gz
rust-9ccd7abefeba2bde9e3366b5bb3985375fb0b8e6.zip
library: Move unstable API of new_uninit to new features
- `new_zeroed` variants move to `new_zeroed_alloc`
- the `write` fn moves to `box_uninit_write`

The remainder will be stabilized in upcoming patches, as
it was decided to only stabilize `uninit*` and `assume_init`.
Diffstat (limited to 'compiler/rustc_index/src')
-rw-r--r--compiler/rustc_index/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_index/src/lib.rs b/compiler/rustc_index/src/lib.rs
index b5e4f02a8d1..b9d2a43206b 100644
--- a/compiler/rustc_index/src/lib.rs
+++ b/compiler/rustc_index/src/lib.rs
@@ -2,6 +2,7 @@
 #![cfg_attr(all(feature = "nightly", test), feature(stmt_expr_attributes))]
 #![cfg_attr(feature = "nightly", allow(internal_features))]
 #![cfg_attr(feature = "nightly", feature(extend_one, new_uninit, step_trait, test))]
+#![cfg_attr(feature = "nightly", feature(new_zeroed_alloc))]
 // tidy-alphabetical-end
 
 pub mod bit_set;