File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use rustc_session::declare_lint_pass;
7
7
use rustc_span:: Span ;
8
8
9
9
/// Ensures that Constant-time Function Evaluation is being done (specifically, MIR lint passes).
10
- /// See rust-lang/rust#125116 for more info .
10
+ /// As Clippy deactivates codegen, this lint ensures that CTFE (used in hard errors) is still ran .
11
11
#[ clippy:: version = "1.82.0" ]
12
12
pub static CLIPPY_CTFE : & Lint = & Lint {
13
13
name : & "clippy::CLIPPY_CTFE" ,
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ extern crate clippy_utils;
65
65
#[ cfg_attr( feature = "internal" , allow( clippy:: missing_clippy_version_attribute) ) ]
66
66
mod utils;
67
67
68
- pub mod ctfe; // Very important lint (rust#125116)
68
+ pub mod ctfe; // Very important lint, do not remove (rust#125116)
69
69
pub mod declared_lints;
70
70
pub mod deprecated_lints;
71
71
You can’t perform that action at this time.
0 commit comments