Skip to content

Commit 51c6630

Browse files
committed
Change MSRV check for manual_pattern_char_comparison only for pattern arrays
1 parent 63388cb commit 51c6630

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

clippy_lints/src/string_patterns.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ fn get_char_span<'tcx>(cx: &'_ LateContext<'tcx>, expr: &'tcx Expr<'_>) -> Optio
134134
}
135135
}
136136

137-
fn check_manual_pattern_char_comparison(cx: &LateContext<'_>, method_arg: &Expr<'_>) {
137+
fn check_manual_pattern_char_comparison(cx: &LateContext<'_>, method_arg: &Expr<'_>, msrv: &Msrv) {
138138
if let ExprKind::Closure(closure) = method_arg.kind
139139
&& let body = cx.tcx.hir().body(closure.body)
140140
&& let Some(PatKind::Binding(_, binding, ..)) = body.params.first().map(|p| p.pat.kind)
@@ -190,6 +190,9 @@ fn check_manual_pattern_char_comparison(cx: &LateContext<'_>, method_arg: &Expr<
190190
{
191191
return;
192192
}
193+
if set_char_spans.len() > 1 && !msrv.meets(msrvs::PATTERN_TRAIT_CHAR_ARRAY) {
194+
return;
195+
}
193196
span_lint_and_then(
194197
cx,
195198
MANUAL_PATTERN_CHAR_COMPARISON,
@@ -232,10 +235,8 @@ impl<'tcx> LateLintPass<'tcx> for StringPatterns {
232235
&& let Some(arg) = args.get(pos)
233236
{
234237
check_single_char_pattern_lint(cx, arg);
235-
if !self.msrv.meets(msrvs::PATTERN_TRAIT_CHAR_ARRAY) {
236-
return;
237-
}
238-
check_manual_pattern_char_comparison(cx, arg);
238+
239+
check_manual_pattern_char_comparison(cx, arg, &self.msrv);
239240
}
240241
}
241242

tests/ui/manual_pattern_char_comparison.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ fn msrv_1_57() {
5858
fn msrv_1_58() {
5959
let sentence = "Hello, world!";
6060
sentence.trim_end_matches(['.', ',', '!', '?']);
61-
}
61+
}

0 commit comments

Comments
 (0)