diff options
| author | bors <bors@rust-lang.org> | 2024-02-10 12:28:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-02-10 12:28:39 +0000 |
| commit | 5f40394baa07b6fb50bc70dedd8b780524b20934 (patch) | |
| tree | 5c3cfc67941b0bf40c4ad3dec50f529e473ff23e /compiler/rustc_errors/src | |
| parent | 232919c33a5ba8ce8b4171b03cc898c77da136cc (diff) | |
| parent | 55913368c53b2846bd96fd017abc34a0af07ccc8 (diff) | |
| download | rust-5f40394baa07b6fb50bc70dedd8b780524b20934.tar.gz rust-5f40394baa07b6fb50bc70dedd8b780524b20934.zip | |
Auto merge of #120877 - matthiaskrgr:rollup-j1b8mv6, r=matthiaskrgr
Rollup of 8 pull requests Successful merges: - #117614 (static mut: allow mutable reference to arbitrary types, not just slices and arrays) - #120719 (Remove support for `associated_type_bound` nested in `dyn` types) - #120764 (Add documentation on `str::starts_with`) - #120823 (Clarify that atomic and regular integers can differ in alignment) - #120859 (Loosen an assertion to account for stashed errors.) - #120865 (Turn the "no saved object file in work product" ICE into a translatable fatal error) - #120866 (Remove unnecessary `#![feature(min_specialization)]`) - #120870 (Allow restricted trait impls under `#[allow_internal_unstable(min_specialization)]`) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_errors/src')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index 7216fa8f5e4..ab3ad0e9d68 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -7,6 +7,7 @@ #![allow(internal_features)] #![allow(rustc::diagnostic_outside_of_impl)] #![allow(rustc::untranslatable_diagnostic)] +#![cfg_attr(bootstrap, feature(min_specialization))] #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] #![doc(rust_logo)] #![feature(array_windows)] @@ -16,7 +17,6 @@ #![feature(error_reporter)] #![feature(extract_if)] #![feature(let_chains)] -#![feature(min_specialization)] #![feature(negative_impls)] #![feature(never_type)] #![feature(rustc_attrs)] |
