summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/author/call.stdout
blob: 4dccf666631a928a15e4beb142dde1eaedd36135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if_chain! {
    if let StmtKind::Local(ref local) = stmt.kind;
    if let Some(ref init) = local.init;
    if let ExprKind::Call(ref func, ref args) = init.kind;
    if let ExprKind::Path(ref path) = func.kind;
    if match_qpath(path, &["{{root}}", "std", "cmp", "min"]);
    if args.len() == 2;
    if let ExprKind::Lit(ref lit) = args[0].kind;
    if let LitKind::Int(3, _) = lit.node;
    if let ExprKind::Lit(ref lit1) = args[1].kind;
    if let LitKind::Int(4, _) = lit1.node;
    if let PatKind::Wild = local.pat.kind;
    then {
        // report your lint here
    }
}