2018-02-24 01:02:48 +00:00
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let StmtKind::Local(ref local) = stmt.kind;
|
2019-03-07 13:07:01 +00:00
|
|
|
if let Some(ref init) = local.init;
|
2019-09-27 15:16:06 +00:00
|
|
|
if let ExprKind::Cast(ref expr, ref cast_ty) = init.kind;
|
|
|
|
if let TyKind::Path(ref qp) = cast_ty.kind;
|
2018-02-24 01:02:48 +00:00
|
|
|
if match_qpath(qp, &["char"]);
|
2019-09-27 15:16:06 +00:00
|
|
|
if let ExprKind::Lit(ref lit) = expr.kind;
|
2018-02-24 01:02:48 +00:00
|
|
|
if let LitKind::Int(69, _) = lit.node;
|
2019-09-27 15:16:06 +00:00
|
|
|
if let PatKind::Binding(BindingAnnotation::Unannotated, _, name, None) = local.pat.kind;
|
|
|
|
if name.kind.as_str() == "x";
|
2018-02-24 01:02:48 +00:00
|
|
|
then {
|
|
|
|
// report your lint here
|
|
|
|
}
|
|
|
|
}
|