diff options
| author | bors <bors@rust-lang.org> | 2024-10-16 14:40:08 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-10-16 14:40:08 +0000 |
| commit | bed75e7c21e8d18bd536a0f7c9e479d2f6707db3 (patch) | |
| tree | 4c7fc86850f97da7e70de6e039de76a0d78c8cc5 /compiler/rustc_const_eval/src | |
| parent | 0037048da8ed19feef7ee1437f123a88a7342b33 (diff) | |
| parent | cd60224af72a380dad27f01afc08c7374105525b (diff) | |
| download | rust-bed75e7c21e8d18bd536a0f7c9e479d2f6707db3.tar.gz rust-bed75e7c21e8d18bd536a0f7c9e479d2f6707db3.zip | |
Auto merge of #131767 - cuviper:bump-stage0, r=Mark-Simulacrum
Bump bootstrap compiler to 1.83.0-beta.1 https://forge.rust-lang.org/release/process.html#master-bootstrap-update-tuesday
Diffstat (limited to 'compiler/rustc_const_eval/src')
| -rw-r--r-- | compiler/rustc_const_eval/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_const_eval/src/lib.rs b/compiler/rustc_const_eval/src/lib.rs index cbe8a043fba..39e2d3b4ebb 100644 --- a/compiler/rustc_const_eval/src/lib.rs +++ b/compiler/rustc_const_eval/src/lib.rs @@ -1,8 +1,6 @@ // tidy-alphabetical-start #![allow(internal_features)] #![allow(rustc::diagnostic_outside_of_impl)] -#![cfg_attr(not(bootstrap), feature(unqualified_local_imports))] -#![cfg_attr(not(bootstrap), warn(unqualified_local_imports))] #![doc(rust_logo)] #![feature(assert_matches)] #![feature(box_patterns)] @@ -15,7 +13,9 @@ #![feature(strict_provenance)] #![feature(trait_alias)] #![feature(try_blocks)] +#![feature(unqualified_local_imports)] #![feature(yeet_expr)] +#![warn(unqualified_local_imports)] #![warn(unreachable_pub)] // tidy-alphabetical-end |
