clippy 0.0.155

A bunch of helpful lints to avoid common pitfalls in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if_let_chain!{[
    let Expr_::ExprBinary(ref op, ref left, ref right) = expr.node,
    BinOp_::BiEq == op.node,
    let Expr_::ExprBinary(ref op1, ref left1, ref right1) = left.node,
    BinOp_::BiBitAnd == op1.node,
    let Expr_::ExprPath(ref path) = left1.node,
    match_qpath(path, &["x"]),
    let Expr_::ExprLit(ref lit) = right1.node,
    let LitKind::Int(15, _) = lit.node,
    let Expr_::ExprLit(ref lit1) = right.node,
    let LitKind::Int(0, _) = lit1.node,
], {
    // report your lint here
}}