-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Add let_underscore_must_use
lint
#4823
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
use if_chain::if_chain; | ||
use rustc::declare_lint_pass; | ||
use rustc::hir::*; | ||
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass}; | ||
use rustc_session::declare_tool_lint; | ||
|
||
use crate::utils::{is_must_use_func_call, is_must_use_ty, span_help_and_lint}; | ||
|
||
declare_clippy_lint! { | ||
/// **What it does:** Checks for `let _ = <expr>` | ||
/// where expr is #[must_use] | ||
/// | ||
/// **Why is this bad?** It's better to explicitly | ||
/// handle the value of a #[must_use] expr | ||
/// | ||
/// **Known problems:** None. | ||
/// | ||
/// **Example:** | ||
/// ```rust | ||
/// fn f() -> Result<u32, u32> { | ||
/// Ok(0) | ||
/// } | ||
/// | ||
/// let _ = f(); | ||
/// // is_ok() is marked #[must_use] | ||
/// let _ = f().is_ok(); | ||
/// ``` | ||
pub LET_UNDERSCORE_MUST_USE, | ||
restriction, | ||
"non-binding let on a #[must_use] expression" | ||
} | ||
|
||
declare_lint_pass!(LetUnderscore => [LET_UNDERSCORE_MUST_USE]); | ||
|
||
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LetUnderscore { | ||
fn check_stmt(&mut self, cx: &LateContext<'_, '_>, stmt: &Stmt) { | ||
if_chain! { | ||
if let StmtKind::Local(ref local) = stmt.kind; | ||
if let PatKind::Wild = local.pat.kind; | ||
if let Some(ref init) = local.init; | ||
then { | ||
if is_must_use_ty(cx, cx.tables.expr_ty(init)) { | ||
span_help_and_lint( | ||
cx, | ||
LET_UNDERSCORE_MUST_USE, | ||
stmt.span, | ||
"non-binding let on an expression with #[must_use] type", | ||
"consider explicitly using expression value" | ||
) | ||
} else if is_must_use_func_call(cx, init) { | ||
span_help_and_lint( | ||
cx, | ||
LET_UNDERSCORE_MUST_USE, | ||
stmt.span, | ||
"non-binding let on a result of a #[must_use] function", | ||
"consider explicitly using function result" | ||
) | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
#![warn(clippy::let_underscore_must_use)] | ||
|
||
#[must_use] | ||
fn f() -> u32 { | ||
0 | ||
} | ||
|
||
fn g() -> Result<u32, u32> { | ||
Ok(0) | ||
} | ||
|
||
#[must_use] | ||
fn l<T>(x: T) -> T { | ||
x | ||
} | ||
|
||
fn h() -> u32 { | ||
0 | ||
} | ||
|
||
struct S {} | ||
|
||
impl S { | ||
#[must_use] | ||
pub fn f(&self) -> u32 { | ||
0 | ||
} | ||
|
||
pub fn g(&self) -> Result<u32, u32> { | ||
Ok(0) | ||
} | ||
|
||
fn k(&self) -> u32 { | ||
0 | ||
} | ||
|
||
#[must_use] | ||
fn h() -> u32 { | ||
0 | ||
} | ||
|
||
fn p() -> Result<u32, u32> { | ||
Ok(0) | ||
} | ||
} | ||
|
||
trait Trait { | ||
#[must_use] | ||
fn a() -> u32; | ||
} | ||
|
||
impl Trait for S { | ||
fn a() -> u32 { | ||
0 | ||
} | ||
} | ||
|
||
fn main() { | ||
let _ = f(); | ||
let _ = g(); | ||
let _ = h(); | ||
let _ = l(0_u32); | ||
|
||
let s = S {}; | ||
|
||
let _ = s.f(); | ||
let _ = s.g(); | ||
let _ = s.k(); | ||
|
||
let _ = S::h(); | ||
let _ = S::p(); | ||
|
||
let _ = S::a(); | ||
|
||
let _ = if true { Ok(()) } else { Err(()) }; | ||
|
||
let a = Result::<(), ()>::Ok(()); | ||
|
||
let _ = a.is_ok(); | ||
|
||
let _ = a.map(|_| ()); | ||
|
||
let _ = a; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a test for a function, that is not
must_use
and doesn't have amust_use
type.