]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/main_recursion.rs
Merge remote-tracking branch 'upstream/master' into rustup
[rust.git] / clippy_lints / src / main_recursion.rs
index eceae706e4fc716c3c41ed948ef0fbffd275a2d9..1ed3f3de839085d3e73510edc49921738d6ec003 100644 (file)
@@ -43,8 +43,7 @@ fn check_expr_post(&mut self, cx: &LateContext<'_>, expr: &Expr<'_>) {
 
         if_chain! {
             if let ExprKind::Call(func, _) = &expr.kind;
-            if let ExprKind::Path(path) = &func.kind;
-            if let QPath::Resolved(_, path) = &path;
+            if let ExprKind::Path(QPath::Resolved(_, path)) = &func.kind;
             if let Some(def_id) = path.res.opt_def_id();
             if is_entrypoint_fn(cx, def_id);
             then {