diff options
| author | bors <bors@rust-lang.org> | 2024-01-26 03:18:34 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-01-26 03:18:34 +0000 |
| commit | 69db514ed9238bb11f5d2c576fe26020e3b99a52 (patch) | |
| tree | fdb0d78d294f0c57cd9743f3754925677f7db27c /compiler/rustc_errors | |
| parent | dd2559e08e1530806740931037d6bb83ef956161 (diff) | |
| parent | fd29f74ff8d787f707a40bc5dbcd8f7827100f5e (diff) | |
| download | rust-69db514ed9238bb11f5d2c576fe26020e3b99a52.tar.gz rust-69db514ed9238bb11f5d2c576fe26020e3b99a52.zip | |
Auto merge of #119968 - clubby789:unused-feature, r=compiler-errors
Remove unused/unnecessary features ~~The bulk of the actual code changes here is replacing try blocks with equivalent closures. I'm not entirely sure that's a good idea since it may have perf impact, happy to revert if that's the case/the change is unwanted.~~ I also removed a lot of `recursion_limit = "256"` since everything seems to build fine without that and most don't have any comment justifying it.
Diffstat (limited to 'compiler/rustc_errors')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index 9d80c456517..ee831c4f560 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -8,15 +8,14 @@ #![feature(array_windows)] #![feature(associated_type_defaults)] #![feature(box_into_inner)] +#![feature(box_patterns)] #![feature(extract_if)] -#![feature(if_let_guard)] #![feature(let_chains)] #![feature(negative_impls)] #![feature(never_type)] #![feature(rustc_attrs)] #![feature(yeet_expr)] #![feature(try_blocks)] -#![feature(box_patterns)] #![feature(error_reporter)] #![allow(incomplete_features)] #![allow(internal_features)] |
