mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 15:11:30 +00:00
Auto merge of #5264 - flip1995:rustup, r=flip1995
Rustup to rust-lang/rust#69506 changelog: none
This commit is contained in:
commit
74eae9dc60
4 changed files with 4 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
#![feature(stmt_expr_attributes)]
|
||||
#![allow(redundant_semicolon, clippy::no_effect)]
|
||||
#![allow(redundant_semicolons, clippy::no_effect)]
|
||||
|
||||
#[rustfmt::skip]
|
||||
fn main() {
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
if_chain! {
|
||||
if let ExprKind::Block(ref block) = expr.kind;
|
||||
if let Some(trailing_expr) = &block.expr;
|
||||
if block.stmts.len() == 1;
|
||||
if let StmtKind::Semi(ref e, _) = block.stmts[0].kind
|
||||
if let ExprKind::Tup(ref elements) = e.kind;
|
||||
if elements.len() == 0;
|
||||
if block.stmts.len() == 0;
|
||||
then {
|
||||
// report your lint here
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
clippy::blacklisted_name,
|
||||
clippy::no_effect,
|
||||
clippy::redundant_clone,
|
||||
redundant_semicolon,
|
||||
redundant_semicolons,
|
||||
unused_assignments
|
||||
)]
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
clippy::blacklisted_name,
|
||||
clippy::no_effect,
|
||||
clippy::redundant_clone,
|
||||
redundant_semicolon,
|
||||
redundant_semicolons,
|
||||
unused_assignments
|
||||
)]
|
||||
|
||||
|
|
Loading…
Reference in a new issue