mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
13 lines
256 B
Text
13 lines
256 B
Text
if_chain! {
|
|
if let ExprKind::Block(ref block) = expr.kind;
|
|
if let Some(trailing_expr) = &block.expr;
|
|
if block.stmts.len() == 0;
|
|
then {
|
|
// report your lint here
|
|
}
|
|
}
|
|
if_chain! {
|
|
then {
|
|
// report your lint here
|
|
}
|
|
}
|