Use #[rustc_box] in alloc instead of box syntax

This commit is contained in:
est31 2022-05-28 16:37:52 +02:00
parent cfc21deebd
commit 535e28b6c6
4 changed files with 56 additions and 9 deletions

View file

@ -147,7 +147,7 @@
#![feature(allocator_internals)]
#![feature(allow_internal_unstable)]
#![feature(associated_type_bounds)]
#![feature(box_syntax)]
#![cfg_attr(bootstrap, feature(box_syntax))]
#![feature(cfg_sanitize)]
#![feature(const_deref)]
#![feature(const_mut_refs)]
@ -170,6 +170,7 @@
#![feature(rustc_attrs)]
#![feature(slice_internals)]
#![feature(staged_api)]
#![feature(stmt_expr_attributes)]
#![cfg_attr(test, feature(test))]
#![feature(unboxed_closures)]
#![feature(unsized_fn_params)]