File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 14
14
#![feature(strict_provenance)]
15
15
#![feature(exposed_provenance)]
16
16
#![feature(pointer_is_aligned_to)]
17
+ #![feature(unqualified_local_imports)]
17
18
// Configure clippy and other lints
18
19
#![allow(
19
20
clippy::collapsible_else_if,
42
43
)]
43
44
#![warn(
44
45
rust_2018_idioms,
46
+ unqualified_local_imports,
45
47
clippy::cast_possible_wrap, // unsigned -> signed
46
48
clippy::cast_sign_loss, // signed -> unsigned
47
49
clippy::cast_lossless,
48
50
clippy::cast_possible_truncation,
49
51
)]
50
- #![cfg_attr(not(bootstrap), feature(unqualified_local_imports))]
51
- #![cfg_attr(not(bootstrap), warn(unqualified_local_imports))]
52
52
// Needed for rustdoc from bootstrap (with `-Znormalize-docs`).
53
53
#![recursion_limit = "256"]
54
54
You can’t perform that action at this time.
0 commit comments