mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
17 lines
628 B
Text
17 lines
628 B
Text
if_chain! {
|
|
if let StmtKind::Decl(ref decl, _) = stmt.node
|
|
if let DeclKind::Local(ref local) = decl.node;
|
|
if let Some(ref init) = local.init
|
|
if let ExprKind::Call(ref func, ref args) = init.node;
|
|
if let ExprKind::Path(ref path) = func.node;
|
|
if match_qpath(path, &["{{root}}", "std", "cmp", "min"]);
|
|
if args.len() == 2;
|
|
if let ExprKind::Lit(ref lit) = args[0].node;
|
|
if let LitKind::Int(3, _) = lit.node;
|
|
if let ExprKind::Lit(ref lit1) = args[1].node;
|
|
if let LitKind::Int(4, _) = lit1.node;
|
|
if let PatKind::Wild = local.pat.node;
|
|
then {
|
|
// report your lint here
|
|
}
|
|
}
|