diff options
| author | Slanterns <slanterns.w@gmail.com> | 2023-10-18 07:35:57 +0800 |
|---|---|---|
| committer | Slanterns <slanterns.w@gmail.com> | 2023-10-18 07:35:57 +0800 |
| commit | ed512e91d0318cb06ea2b3729198e64090b5648e (patch) | |
| tree | 485f27c9d11d090f58dc8298ecfe71d271a80ade | |
| parent | 10e6372a83d94e69f792c1bd33c0c435e8073c61 (diff) | |
| download | rust-ed512e91d0318cb06ea2b3729198e64090b5648e.tar.gz rust-ed512e91d0318cb06ea2b3729198e64090b5648e.zip | |
Remove `#![feature(result_option_inspect)]` from the compiler
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 1 | ||||
| -rw-r--r-- | compiler/rustc_middle/src/lib.rs | 1 | ||||
| -rw-r--r-- | compiler/rustc_trait_selection/src/lib.rs | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index da74ee6391a..fad3cb202ee 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -10,7 +10,6 @@ #![feature(if_let_guard)] #![feature(let_chains)] #![feature(never_type)] -#![feature(result_option_inspect)] #![feature(rustc_attrs)] #![feature(yeet_expr)] #![feature(try_blocks)] diff --git a/compiler/rustc_middle/src/lib.rs b/compiler/rustc_middle/src/lib.rs index dee18dc1162..cd0944f6985 100644 --- a/compiler/rustc_middle/src/lib.rs +++ b/compiler/rustc_middle/src/lib.rs @@ -58,7 +58,6 @@ #![feature(extract_if)] #![feature(intra_doc_pointers)] #![feature(yeet_expr)] -#![feature(result_option_inspect)] #![feature(const_option)] #![feature(trait_alias)] #![feature(ptr_alignment_type)] diff --git a/compiler/rustc_trait_selection/src/lib.rs b/compiler/rustc_trait_selection/src/lib.rs index 5ba29f87855..6fab9441bdc 100644 --- a/compiler/rustc_trait_selection/src/lib.rs +++ b/compiler/rustc_trait_selection/src/lib.rs @@ -21,7 +21,6 @@ #![feature(let_chains)] #![feature(if_let_guard)] #![feature(never_type)] -#![feature(result_option_inspect)] #![feature(type_alias_impl_trait)] #![feature(min_specialization)] #![recursion_limit = "512"] // For rustdoc |
