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