rust-clippy/tests/ui/author/blocks.stdout

14 lines
256 B
Text
Raw Normal View History

2019-05-19 14:52:44 +00:00
if_chain! {
if let ExprKind::Block(ref block) = expr.node;
if let Some(trailing_expr) = &block.expr;
if block.stmts.len() == 0;
then {
// report your lint here
}
}
if_chain! {
then {
// report your lint here
}
}