Skip to content

Commit 718435b

Browse files
committed
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
2 parents 424e37b + c00f3cd commit 718435b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#![feature(strict_provenance)]
1515
#![feature(exposed_provenance)]
1616
#![feature(pointer_is_aligned_to)]
17+
#![feature(unqualified_local_imports)]
1718
// Configure clippy and other lints
1819
#![allow(
1920
clippy::collapsible_else_if,
@@ -42,13 +43,12 @@
4243
)]
4344
#![warn(
4445
rust_2018_idioms,
46+
unqualified_local_imports,
4547
clippy::cast_possible_wrap, // unsigned -> signed
4648
clippy::cast_sign_loss, // signed -> unsigned
4749
clippy::cast_lossless,
4850
clippy::cast_possible_truncation,
4951
)]
50-
#![cfg_attr(not(bootstrap), feature(unqualified_local_imports))]
51-
#![cfg_attr(not(bootstrap), warn(unqualified_local_imports))]
5252
// Needed for rustdoc from bootstrap (with `-Znormalize-docs`).
5353
#![recursion_limit = "256"]
5454

0 commit comments

Comments
 (0)