diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-08-04 19:17:35 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2021-10-19 14:53:37 +0200 |
| commit | 2104ac5706df99777d7bb7bebc264d3f439fba9f (patch) | |
| tree | adb30efaa2dfc84dd94380102c70f67ff7bf2788 | |
| parent | 4ddc1f2109232461c07e4b2e5f5a09f76a66e91f (diff) | |
| download | rust-2104ac5706df99777d7bb7bebc264d3f439fba9f.tar.gz rust-2104ac5706df99777d7bb7bebc264d3f439fba9f.zip | |
Remove unused language #![feature]s from alloc.
| -rw-r--r-- | library/alloc/src/lib.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/library/alloc/src/lib.rs b/library/alloc/src/lib.rs index c8ae9d9a38b..6f2c24422fd 100644 --- a/library/alloc/src/lib.rs +++ b/library/alloc/src/lib.rs @@ -131,16 +131,12 @@ // Language features: #![feature(allocator_internals)] #![feature(allow_internal_unstable)] -#![feature(arbitrary_self_types)] #![feature(associated_type_bounds)] -#![feature(auto_traits)] -#![feature(box_patterns)] #![feature(box_syntax)] #![feature(cfg_sanitize)] #![feature(cfg_target_has_atomic)] #![feature(const_fn_trait_bound)] #![feature(const_trait_impl)] -#![feature(decl_macro)] #![feature(destructuring_assignment)] #![feature(dropck_eyepatch)] #![feature(exclusive_range_pattern)] @@ -150,7 +146,6 @@ #![feature(min_specialization)] #![feature(negative_impls)] #![feature(never_type)] -#![feature(nll)] #![feature(rustc_allow_const_fn_unstable)] #![feature(rustc_attrs)] #![feature(staged_api)] |
