Skip to content

fix: manual_let_else missing binding mode #14204

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 19 additions & 18 deletions clippy_lints/src/manual_let_else.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ use clippy_utils::higher::IfLetOrMatch;
use clippy_utils::source::snippet_with_context;
use clippy_utils::ty::is_type_diagnostic_item;
use clippy_utils::{is_lint_allowed, is_never_expr, msrvs, pat_and_expr_can_be_question_mark, peel_blocks};
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
use rustc_ast::BindingMode;
use rustc_data_structures::fx::FxHashMap;
use rustc_errors::Applicability;
use rustc_hir::{Expr, ExprKind, MatchSource, Pat, PatExpr, PatExprKind, PatKind, QPath, Stmt, StmtKind};
use rustc_lint::{LateContext, LintContext};
Expand Down Expand Up @@ -113,7 +114,7 @@ fn emit_manual_let_else(
cx: &LateContext<'_>,
span: Span,
expr: &Expr<'_>,
ident_map: &FxHashMap<Symbol, &Pat<'_>>,
ident_map: &FxHashMap<Symbol, (&Pat<'_>, BindingMode)>,
pat: &Pat<'_>,
else_body: &Expr<'_>,
) {
Expand Down Expand Up @@ -167,7 +168,7 @@ fn emit_manual_let_else(
fn replace_in_pattern(
cx: &LateContext<'_>,
span: Span,
ident_map: &FxHashMap<Symbol, &Pat<'_>>,
ident_map: &FxHashMap<Symbol, (&Pat<'_>, BindingMode)>,
pat: &Pat<'_>,
app: &mut Applicability,
top_level: bool,
Expand All @@ -185,15 +186,16 @@ fn replace_in_pattern(

match pat.kind {
PatKind::Binding(_ann, _id, binding_name, opt_subpt) => {
let Some(pat_to_put) = ident_map.get(&binding_name.name) else {
let Some((pat_to_put, binding_mode)) = ident_map.get(&binding_name.name) else {
break 'a;
};
let sn_pfx = binding_mode.prefix_str();
let (sn_ptp, _) = snippet_with_context(cx, pat_to_put.span, span.ctxt(), "", app);
if let Some(subpt) = opt_subpt {
let subpt = replace_in_pattern(cx, span, ident_map, subpt, app, false);
return format!("{sn_ptp} @ {subpt}");
return format!("{sn_pfx}{sn_ptp} @ {subpt}");
}
return sn_ptp.to_string();
return format!("{sn_pfx}{sn_ptp}");
},
PatKind::Or(pats) => {
let patterns = pats
Expand All @@ -211,17 +213,18 @@ fn replace_in_pattern(
.iter()
.map(|fld| {
if let PatKind::Binding(_, _, name, None) = fld.pat.kind
&& let Some(pat_to_put) = ident_map.get(&name.name)
&& let Some((pat_to_put, binding_mode)) = ident_map.get(&name.name)
{
let sn_pfx = binding_mode.prefix_str();
let (sn_fld_name, _) = snippet_with_context(cx, fld.ident.span, span.ctxt(), "", app);
let (sn_ptp, _) = snippet_with_context(cx, pat_to_put.span, span.ctxt(), "", app);
// TODO: this is a bit of a hack, but it does its job. Ideally, we'd check if pat_to_put is
// a PatKind::Binding but that is also hard to get right.
if sn_fld_name == sn_ptp {
// Field init shorthand
return format!("{sn_fld_name}");
return format!("{sn_pfx}{sn_fld_name}");
}
return format!("{sn_fld_name}: {sn_ptp}");
return format!("{sn_fld_name}: {sn_pfx}{sn_ptp}");
}
let (sn_fld, _) = snippet_with_context(cx, fld.span, span.ctxt(), "", app);
sn_fld.into_owned()
Expand Down Expand Up @@ -334,7 +337,7 @@ fn expr_simple_identity_map<'a, 'hir>(
local_pat: &'a Pat<'hir>,
let_pat: &'_ Pat<'hir>,
expr: &'_ Expr<'hir>,
) -> Option<FxHashMap<Symbol, &'a Pat<'hir>>> {
) -> Option<FxHashMap<Symbol, (&'a Pat<'hir>, BindingMode)>> {
let peeled = peel_blocks(expr);
let (sub_pats, paths) = match (local_pat.kind, peeled.kind) {
(PatKind::Tuple(pats, _), ExprKind::Tup(exprs)) | (PatKind::Slice(pats, ..), ExprKind::Array(exprs)) => {
Expand All @@ -351,9 +354,9 @@ fn expr_simple_identity_map<'a, 'hir>(
return None;
}

let mut pat_bindings = FxHashSet::default();
let_pat.each_binding_or_first(&mut |_ann, _hir_id, _sp, ident| {
pat_bindings.insert(ident);
let mut pat_bindings = FxHashMap::default();
let_pat.each_binding_or_first(&mut |binding_mode, _hir_id, _sp, ident| {
pat_bindings.insert(ident, binding_mode);
});
if pat_bindings.len() < paths.len() {
// This rebinds some bindings from the outer scope, or it repeats some copy-able bindings multiple
Expand All @@ -366,12 +369,10 @@ fn expr_simple_identity_map<'a, 'hir>(
for (sub_pat, path) in sub_pats.iter().zip(paths.iter()) {
if let ExprKind::Path(QPath::Resolved(_ty, path)) = path.kind
&& let [path_seg] = path.segments
&& let ident = path_seg.ident
&& let Some(let_binding_mode) = pat_bindings.remove(&ident)
{
let ident = path_seg.ident;
if !pat_bindings.remove(&ident) {
return None;
}
ident_map.insert(ident.name, sub_pat);
ident_map.insert(ident.name, (sub_pat, let_binding_mode));
} else {
return None;
}
Expand Down
34 changes: 34 additions & 0 deletions tests/ui/manual_let_else.rs
Original file line number Diff line number Diff line change
Expand Up @@ -480,3 +480,37 @@ fn issue12337() {
//~^ manual_let_else
};
}

mod issue13768 {
enum Foo {
Str(String),
None,
}

fn foo(value: Foo) {
let signature = match value {
//~^ manual_let_else
Foo::Str(ref val) => val,
_ => {
println!("No signature found");
return;
},
};
}

enum Bar {
Str { inner: String },
None,
}

fn bar(mut value: Bar) {
let signature = match value {
//~^ manual_let_else
Bar::Str { ref mut inner } => inner,
_ => {
println!("No signature found");
return;
},
};
}
}
42 changes: 41 additions & 1 deletion tests/ui/manual_let_else.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -489,5 +489,45 @@ error: this could be rewritten as `let...else`
LL | let v = if let Some(v_some) = g() { v_some } else { return };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider writing: `let Some(v) = g() else { return };`

error: aborting due to 31 previous errors
error: this could be rewritten as `let...else`
--> tests/ui/manual_let_else.rs:491:9
|
LL | / let signature = match value {
LL | |
LL | | Foo::Str(ref val) => val,
LL | | _ => {
... |
LL | | },
LL | | };
| |__________^
|
help: consider writing
|
LL ~ let Foo::Str(ref signature) = value else {
LL + println!("No signature found");
LL + return;
LL + };
|

error: this could be rewritten as `let...else`
--> tests/ui/manual_let_else.rs:507:9
|
LL | / let signature = match value {
LL | |
LL | | Bar::Str { ref mut inner } => inner,
LL | | _ => {
... |
LL | | },
LL | | };
| |__________^
|
help: consider writing
|
LL ~ let Bar::Str { inner: ref mut signature } = value else {
LL + println!("No signature found");
LL + return;
LL + };
|

error: aborting due to 33 previous errors