Skip to content

Commit c6bcff4

Browse files
compiler: Remove feature(new_uninit)
1 parent e67467a commit c6bcff4

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

compiler/rustc_arena/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#![feature(decl_macro)]
2222
#![feature(dropck_eyepatch)]
2323
#![feature(maybe_uninit_slice)]
24-
#![feature(new_uninit)]
2524
#![feature(rustc_attrs)]
2625
#![feature(rustdoc_internals)]
2726
#![feature(strict_provenance)]

compiler/rustc_index/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// tidy-alphabetical-start
22
#![cfg_attr(all(feature = "nightly", test), feature(stmt_expr_attributes))]
33
#![cfg_attr(feature = "nightly", allow(internal_features))]
4-
#![cfg_attr(feature = "nightly", feature(extend_one, new_uninit, step_trait, test))]
4+
#![cfg_attr(feature = "nightly", feature(extend_one, step_trait, test))]
55
#![cfg_attr(feature = "nightly", feature(new_zeroed_alloc))]
66
// tidy-alphabetical-end
77

compiler/rustc_middle/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
#![feature(min_specialization)]
5353
#![feature(negative_impls)]
5454
#![feature(never_type)]
55-
#![feature(new_uninit)]
5655
#![feature(ptr_alignment_type)]
5756
#![feature(rustc_attrs)]
5857
#![feature(rustdoc_internals)]

compiler/rustc_span/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
#![feature(let_chains)]
2727
#![feature(min_specialization)]
2828
#![feature(negative_impls)]
29-
#![feature(new_uninit)]
3029
#![feature(read_buf)]
3130
#![feature(round_char_boundary)]
3231
#![feature(rustc_attrs)]

0 commit comments

Comments
 (0)