Skip to content

Fix: no_effect_underscore_binding fires on ignored parameters of async fns #12323

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 2 commits into from
Feb 21, 2024
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
9 changes: 3 additions & 6 deletions clippy_lints/src/no_effect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use clippy_utils::{any_parent_is_automatically_derived, get_parent_node, is_lint
use rustc_errors::Applicability;
use rustc_hir::def::{DefKind, Res};
use rustc_hir::{
is_range_literal, BinOpKind, BlockCheckMode, Expr, ExprKind, HirId, HirIdMap, ItemKind, Node, PatKind, Stmt,
StmtKind, UnsafeSource,
is_range_literal, BinOpKind, BlockCheckMode, Expr, ExprKind, HirId, HirIdMap, ItemKind, LocalSource, Node, PatKind,
Stmt, StmtKind, UnsafeSource,
};
use rustc_infer::infer::TyCtxtInferExt as _;
use rustc_lint::{LateContext, LateLintPass, LintContext};
Expand Down Expand Up @@ -43,10 +43,6 @@ declare_clippy_lint! {
/// executed. However, as they have no effect and shouldn't be used further on, all they
/// do is make the code less readable.
///
/// ### Known problems
/// Further usage of this variable is not checked, which can lead to false positives if it is
/// used later in the code.
///
/// ### Example
/// ```rust,ignore
/// let _i_serve_no_purpose = 1;
Expand Down Expand Up @@ -178,6 +174,7 @@ impl NoEffect {
}
} else if let StmtKind::Local(local) = stmt.kind {
if !is_lint_allowed(cx, NO_EFFECT_UNDERSCORE_BINDING, local.hir_id)
&& !matches!(local.source, LocalSource::AsyncFn)
&& let Some(init) = local.init
&& local.els.is_none()
&& !local.pat.span.from_expansion()
Expand Down
50 changes: 50 additions & 0 deletions tests/ui/no_effect_async_fn.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#![warn(clippy::no_effect_underscore_binding)]
#![no_main]

trait AsyncTrait {
async fn bar(i: u64);
}

struct Bar;

impl AsyncTrait for Bar {
// Shouldn't lint `binding to `_` prefixed variable with no side-effect`
async fn bar(_i: u64) {
let _a = 0;
//~^ ERROR: binding to `_` prefixed variable with no side-effect

// Shouldn't lint `binding to `_` prefixed variable with no side-effect`
let _b = num();

let _ = async {
let _c = 0;
//~^ ERROR: binding to `_` prefixed variable with no side-effect

// Shouldn't lint `binding to `_` prefixed variable with no side-effect`
let _d = num();
}
.await;
}
}

// Shouldn't lint `binding to `_` prefixed variable with no side-effect`
async fn foo(_i: u64) {
let _a = 0;
//~^ ERROR: binding to `_` prefixed variable with no side-effect

// Shouldn't lint `binding to `_` prefixed variable with no side-effect`
let _b = num();

let _ = async {
let _c = 0;
//~^ ERROR: binding to `_` prefixed variable with no side-effect

// Shouldn't lint `binding to `_` prefixed variable with no side-effect`
let _d = num();
}
.await;
}

fn num() -> usize {
0
}
29 changes: 29 additions & 0 deletions tests/ui/no_effect_async_fn.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
error: binding to `_` prefixed variable with no side-effect
--> tests/ui/no_effect_async_fn.rs:20:17
|
LL | let _c = 0;
| ^^
|
= note: `-D clippy::no-effect-underscore-binding` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::no_effect_underscore_binding)]`

error: binding to `_` prefixed variable with no side-effect
--> tests/ui/no_effect_async_fn.rs:13:13
|
LL | let _a = 0;
| ^^

error: binding to `_` prefixed variable with no side-effect
--> tests/ui/no_effect_async_fn.rs:39:13
|
LL | let _c = 0;
| ^^

error: binding to `_` prefixed variable with no side-effect
--> tests/ui/no_effect_async_fn.rs:32:9
|
LL | let _a = 0;
| ^^

error: aborting due to 4 previous errors