diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2024-01-03 16:08:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-03 16:08:28 +0100 |
| commit | 394aaeed05affcb8ca1d6b3ca7935508e417b4d7 (patch) | |
| tree | e53e0aeb4f7ff3aeb4b74edf12f39cc7c05e4828 | |
| parent | 493792b37beb2cb3804ef5aa1dc349109c3252fc (diff) | |
| parent | f118c76235c383ed01eded4619f7d275bdb51acb (diff) | |
| download | rust-394aaeed05affcb8ca1d6b3ca7935508e417b4d7.tar.gz rust-394aaeed05affcb8ca1d6b3ca7935508e417b4d7.zip | |
Rollup merge of #119479 - bjorn3:remove_unused_feature_gates, r=compiler-errors
Remove two unused feature gates from rustc_query_impl
| -rw-r--r-- | compiler/rustc_query_impl/src/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_query_impl/src/lib.rs b/compiler/rustc_query_impl/src/lib.rs index 59812efc324..d5883f52819 100644 --- a/compiler/rustc_query_impl/src/lib.rs +++ b/compiler/rustc_query_impl/src/lib.rs @@ -3,9 +3,6 @@ #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] #![doc(rust_logo)] #![feature(rustdoc_internals)] -// this shouldn't be necessary, but the check for `&mut _` is too naive and denies returning a function pointer that takes a mut ref -#![feature(const_mut_refs)] -#![feature(const_refs_to_cell)] #![feature(min_specialization)] #![feature(never_type)] #![feature(rustc_attrs)] |
