Skip to content

Commit

Permalink
Rustup to rust-lang#69506
Browse files Browse the repository at this point in the history
  • Loading branch information
flip1995 committed Mar 3, 2020
1 parent 9c93f04 commit a640696
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/ui/author/blocks.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![feature(stmt_expr_attributes)]
#![allow(redundant_semicolon, clippy::no_effect)]
#![allow(redundant_semicolons, clippy::no_effect)]

#[rustfmt::skip]
fn main() {
Expand Down
5 changes: 1 addition & 4 deletions tests/ui/author/blocks.stdout
Original file line number Diff line number Diff line change
@@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/swap.fixed
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
clippy::blacklisted_name,
clippy::no_effect,
clippy::redundant_clone,
redundant_semicolon,
redundant_semicolons,
unused_assignments
)]

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/swap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
clippy::blacklisted_name,
clippy::no_effect,
clippy::redundant_clone,
redundant_semicolon,
redundant_semicolons,
unused_assignments
)]

Expand Down

0 comments on commit a640696

Please sign in to comment.