about summary refs log tree commit diff
path: root/compiler/rustc_parse
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2020-09-20 12:08:22 +0200
committerGitHub <noreply@github.com>2020-09-20 12:08:22 +0200
commit4322e1b92df83e9e8e84aac3f5f8f3545341fd3a (patch)
tree2e1d58378db43529513b768810b75141327a1ce6 /compiler/rustc_parse
parent3268e33199c98e5bfb035ea70130ea36af00e714 (diff)
parentebdea011436dfea810ff1bbd827636ac75f6f092 (diff)
downloadrust-4322e1b92df83e9e8e84aac3f5f8f3545341fd3a.tar.gz
rust-4322e1b92df83e9e8e84aac3f5f8f3545341fd3a.zip
Rollup merge of #76821 - est31:remove_redundant_nightly_features, r=oli-obk,Mark-Simulacrum
Remove redundant nightly features

Removes a bunch of redundant/outdated nightly features. The first commit removes a `core_intrinsics` use for which a stable wrapper has been provided since. The second commit replaces the `const_generics` feature with `min_const_generics` which might get stabilized this year. The third commit is the result of a trial/error run of removing every single feature and then adding it back if compile failed. A bunch of unused features are the result that the third commit removes.
Diffstat (limited to 'compiler/rustc_parse')
-rw-r--r--compiler/rustc_parse/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs
index 0becdf24c53..72a34b86ae2 100644
--- a/compiler/rustc_parse/src/lib.rs
+++ b/compiler/rustc_parse/src/lib.rs
@@ -3,7 +3,6 @@
 #![feature(bool_to_option)]
 #![feature(crate_visibility_modifier)]
 #![feature(bindings_after_at)]
-#![feature(try_blocks)]
 #![feature(or_patterns)]
 
 use rustc_ast as ast;