Skip to content

Commit 54b45f7

Browse files
Fix incorrect suggestion for manual_unwrap_or_default
1 parent 29cc5c6 commit 54b45f7

File tree

3 files changed

+44
-7
lines changed

3 files changed

+44
-7
lines changed

clippy_lints/src/manual_unwrap_or_default.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,15 @@ declare_lint_pass!(ManualUnwrapOrDefault => [MANUAL_UNWRAP_OR_DEFAULT]);
5353

5454
fn get_some<'tcx>(cx: &LateContext<'tcx>, pat: &Pat<'tcx>) -> Option<HirId> {
5555
if let PatKind::TupleStruct(QPath::Resolved(_, path), &[pat], _) = pat.kind
56+
&& let PatKind::Binding(_, pat_id, _, _) = pat.kind
5657
&& let Some(def_id) = path.res.opt_def_id()
5758
// Since it comes from a pattern binding, we need to get the parent to actually match
5859
// against it.
5960
&& let Some(def_id) = cx.tcx.opt_parent(def_id)
6061
&& (cx.tcx.lang_items().get(LangItem::OptionSome) == Some(def_id)
6162
|| cx.tcx.lang_items().get(LangItem::ResultOk) == Some(def_id))
6263
{
63-
let mut bindings = Vec::new();
64-
pat.each_binding(|_, id, _, _| bindings.push(id));
65-
if let &[id] = bindings.as_slice() {
66-
Some(id)
67-
} else {
68-
None
69-
}
64+
Some(pat_id)
7065
} else {
7166
None
7267
}

tests/ui/manual_unwrap_or_default.fixed

+21
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,24 @@ fn issue_12569() {
7878
0
7979
};
8080
}
81+
82+
// Should not warn!
83+
fn issue_12928() {
84+
let x = Some((1, 2));
85+
let y = if let Some((a, _)) = x { a } else { 0 };
86+
let y = if let Some((a, ..)) = x { a } else { 0 };
87+
let x = Some([1, 2]);
88+
let y = if let Some([a, _]) = x { a } else { 0 };
89+
let y = if let Some([a, ..]) = x { a } else { 0 };
90+
91+
struct X {
92+
a: u8,
93+
b: u8,
94+
}
95+
let x = Some(X { a: 0, b: 0 });
96+
let y = if let Some(X { a, .. }) = x { a } else { 0 };
97+
struct Y(u8, u8);
98+
let x = Some(Y(0, 0));
99+
let y = if let Some(Y(a, _)) = x { a } else { 0 };
100+
let y = if let Some(Y(a, ..)) = x { a } else { 0 };
101+
}

tests/ui/manual_unwrap_or_default.rs

+21
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,24 @@ fn issue_12569() {
111111
0
112112
};
113113
}
114+
115+
// Should not warn!
116+
fn issue_12928() {
117+
let x = Some((1, 2));
118+
let y = if let Some((a, _)) = x { a } else { 0 };
119+
let y = if let Some((a, ..)) = x { a } else { 0 };
120+
let x = Some([1, 2]);
121+
let y = if let Some([a, _]) = x { a } else { 0 };
122+
let y = if let Some([a, ..]) = x { a } else { 0 };
123+
124+
struct X {
125+
a: u8,
126+
b: u8,
127+
}
128+
let x = Some(X { a: 0, b: 0 });
129+
let y = if let Some(X { a, .. }) = x { a } else { 0 };
130+
struct Y(u8, u8);
131+
let x = Some(Y(0, 0));
132+
let y = if let Some(Y(a, _)) = x { a } else { 0 };
133+
let y = if let Some(Y(a, ..)) = x { a } else { 0 };
134+
}

0 commit comments

Comments
 (0)