about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-08-27 00:42:01 +0200
committerGitHub <noreply@github.com>2024-08-27 00:42:01 +0200
commit90a1b6d1584ea3591941d5e807f524c8d2e621e8 (patch)
tree4c9aacf0eadba48e3ca07b16741e9e2af8825807
parent862b91155158e1ccf750c9a40abf111e91eeb1fa (diff)
parent4e1555462f136d3d1f312537d189c9b8d7bc921a (diff)
downloadrust-90a1b6d1584ea3591941d5e807f524c8d2e621e8.tar.gz
rust-90a1b6d1584ea3591941d5e807f524c8d2e621e8.zip
Rollup merge of #129622 - bjorn3:less_unstable, r=lqd
Remove a couple of unused feature enables
-rw-r--r--compiler/rustc_infer/src/lib.rs2
-rw-r--r--compiler/rustc_macros/src/lib.rs2
2 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_infer/src/lib.rs b/compiler/rustc_infer/src/lib.rs
index 25ac8ba974b..30dc666128c 100644
--- a/compiler/rustc_infer/src/lib.rs
+++ b/compiler/rustc_infer/src/lib.rs
@@ -27,8 +27,6 @@
 #![feature(iterator_try_collect)]
 #![feature(let_chains)]
 #![feature(rustdoc_internals)]
-#![feature(try_blocks)]
-#![feature(yeet_expr)]
 #![recursion_limit = "512"] // For rustdoc
 // tidy-alphabetical-end
 
diff --git a/compiler/rustc_macros/src/lib.rs b/compiler/rustc_macros/src/lib.rs
index c59f86b0a9b..929bc2df6f6 100644
--- a/compiler/rustc_macros/src/lib.rs
+++ b/compiler/rustc_macros/src/lib.rs
@@ -1,7 +1,5 @@
 // tidy-alphabetical-start
-#![allow(internal_features)]
 #![allow(rustc::default_hash_types)]
-#![feature(allow_internal_unstable)]
 #![feature(if_let_guard)]
 #![feature(let_chains)]
 #![feature(never_type)]