diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-06-29 06:59:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-29 06:59:32 +0200 |
| commit | 77757e7680439ae9c72ff6f03d68c528a44d1d81 (patch) | |
| tree | 50cc224377d070a50a2d01de9880361958ddbc38 /compiler/rustc_middle/src | |
| parent | 8dbc25ce9f0896cd13cdcb91693e315e4741b585 (diff) | |
| parent | 8429c9911b68afe9c0cc5804cb15fc22f03d913c (diff) | |
| download | rust-77757e7680439ae9c72ff6f03d68c528a44d1d81.tar.gz rust-77757e7680439ae9c72ff6f03d68c528a44d1d81.zip | |
Rollup merge of #143169 - yotamofek:pr/unneeded-features, r=compiler-errors
Remove unused feature gates After finding some unused feature gates in rust-lang/rust#143155 , I wrote a small script to see if I can find any others. And I did. Not a lot, but still a small win 😁 Contains a few instances of `iter_from_coroutine` that can be removed due to rust-lang/rust#142801 (I guess).
Diffstat (limited to 'compiler/rustc_middle/src')
| -rw-r--r-- | compiler/rustc_middle/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/lib.rs b/compiler/rustc_middle/src/lib.rs index ce2cb33c173..b30b9b60e30 100644 --- a/compiler/rustc_middle/src/lib.rs +++ b/compiler/rustc_middle/src/lib.rs @@ -48,7 +48,6 @@ #![feature(gen_blocks)] #![feature(if_let_guard)] #![feature(intra_doc_pointers)] -#![feature(iter_from_coroutine)] #![feature(min_specialization)] #![feature(negative_impls)] #![feature(never_type)] |
