mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
fix for git rebase
This commit is contained in:
parent
dd3d0fdad3
commit
3a9c0ef8a1
1 changed files with 2 additions and 2 deletions
|
@ -148,8 +148,8 @@ fn check_to_owned(
|
||||||
|
|
||||||
fn suggest(cx: &LateContext<'_>, parent_expr: &hir::Expr<'_>, left_expr: &hir::Expr<'_>, filter_expr: &hir::Expr<'_>) {
|
fn suggest(cx: &LateContext<'_>, parent_expr: &hir::Expr<'_>, left_expr: &hir::Expr<'_>, filter_expr: &hir::Expr<'_>) {
|
||||||
if let hir::ExprKind::MethodCall(_, [_, closure], _) = filter_expr.kind
|
if let hir::ExprKind::MethodCall(_, [_, closure], _) = filter_expr.kind
|
||||||
&& let hir::ExprKind::Closure(_, _, filter_body_id, ..) = closure.kind
|
&& let hir::ExprKind::Closure{ body, ..} = closure.kind
|
||||||
&& let filter_body = cx.tcx.hir().body(filter_body_id)
|
&& let filter_body = cx.tcx.hir().body(body)
|
||||||
&& let [filter_params] = filter_body.params
|
&& let [filter_params] = filter_body.params
|
||||||
&& let Some(sugg) = match filter_params.pat.kind {
|
&& let Some(sugg) = match filter_params.pat.kind {
|
||||||
hir::PatKind::Binding(_, _, filter_param_ident, None) => {
|
hir::PatKind::Binding(_, _, filter_param_ident, None) => {
|
||||||
|
|
Loading…
Reference in a new issue