summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/author.stdout
blob: 597318a556b850fc5b356214849b6c23ca734b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if_chain! {
    if let StmtKind::Local(local) = stmt.kind;
    if let Some(init) = local.init;
    if let ExprKind::Cast(expr, cast_ty) = init.kind;
    if let TyKind::Path(ref qpath) = cast_ty.kind;
    if match_qpath(qpath, &["char"]);
    if let ExprKind::Lit(ref lit) = expr.kind;
    if let LitKind::Int(69, LitIntType::Unsuffixed) = lit.node;
    if let PatKind::Binding(BindingAnnotation::NONE, _, name, None) = local.pat.kind;
    if name.as_str() == "x";
    then {
        // report your lint here
    }
}