Skip to content

Commit b4e7085

Browse files
committed
implicit_return: do not suggest adding return into desugared code
Blocks created by desugaring will not contain an explicit `return`. Do not suggest to add it when the user has no control over the desugared code.
1 parent 1e5237f commit b4e7085

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

clippy_lints/src/implicit_return.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use clippy_utils::{get_async_fn_body, is_async_fn, is_from_proc_macro};
55
use core::ops::ControlFlow;
66
use rustc_errors::Applicability;
77
use rustc_hir::intravisit::FnKind;
8-
use rustc_hir::{Block, Body, Expr, ExprKind, FnDecl, FnRetTy, HirId};
8+
use rustc_hir::{Block, Body, Closure, ClosureKind, CoroutineKind, Expr, ExprKind, FnDecl, FnRetTy, HirId};
99
use rustc_lint::{LateContext, LateLintPass, LintContext};
1010
use rustc_session::declare_lint_pass;
1111
use rustc_span::def_id::LocalDefId;
@@ -200,6 +200,12 @@ fn lint_implicit_returns(
200200
LintLocation::Inner
201201
},
202202

203+
// Closures issues from desugaring don't need a return statement.
204+
ExprKind::Closure(Closure {
205+
kind: ClosureKind::Coroutine(CoroutineKind::Desugared(..)),
206+
..
207+
}) => LintLocation::Inner,
208+
203209
_ =>
204210
{
205211
#[expect(clippy::option_if_let_else)]

tests/ui/implicit_return.fixed

+4
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,7 @@ with_span!(
165165
x
166166
}
167167
);
168+
169+
fn block_in_closure() {
170+
let _ = async || return 0;
171+
}

tests/ui/implicit_return.rs

+4
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,7 @@ with_span!(
165165
x
166166
}
167167
);
168+
169+
fn block_in_closure() {
170+
let _ = async || return 0;
171+
}

0 commit comments

Comments
 (0)