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