Skip to content

Commit 26c556d

Browse files
committed
Auto merge of #12965 - KisaragiEffective:resolve-invalid-paths-on-bool-then, r=blyxyas
resolve `clippy::invalid_paths` on `bool::then` *Please write a short comment explaining your change (or "none" for internal only changes)* changelog: none
2 parents 0ce07f6 + 9749d99 commit 26c556d

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

clippy_lints/src/utils/internal_lints/invalid_paths.rs

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ pub fn check_path(cx: &LateContext<'_>, path: &[&str]) -> bool {
6969
SimplifiedType::Float(FloatTy::F64),
7070
SimplifiedType::Slice,
7171
SimplifiedType::Str,
72+
SimplifiedType::Bool,
7273
]
7374
.iter()
7475
.flat_map(|&ty| cx.tcx.incoherent_impls(ty).into_iter())

clippy_utils/src/paths.rs

-1
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,4 @@ pub const VEC_POP: [&str; 4] = ["alloc", "vec", "Vec", "pop"];
110110
pub const WAKER: [&str; 4] = ["core", "task", "wake", "Waker"];
111111
pub const OPTION_UNWRAP: [&str; 4] = ["core", "option", "Option", "unwrap"];
112112
pub const OPTION_EXPECT: [&str; 4] = ["core", "option", "Option", "expect"];
113-
#[expect(clippy::invalid_paths)] // not sure why it thinks this, it works so
114113
pub const BOOL_THEN: [&str; 4] = ["core", "bool", "<impl bool>", "then"];

0 commit comments

Comments
 (0)