rust/tests/ui/author/blocks.stdout

14 lines
256 B
Plaintext
Raw Normal View History

2019-05-19 09:52:44 -05:00
if_chain! {
2019-09-27 10:16:06 -05:00
if let ExprKind::Block(ref block) = expr.kind;
2019-05-19 09:52:44 -05:00
if let Some(trailing_expr) = &block.expr;
2020-03-03 17:54:27 -06:00
if block.stmts.len() == 0;
2019-05-19 09:52:44 -05:00
then {
// report your lint here
}
}
if_chain! {
then {
// report your lint here
}
}