2018-02-24 02:02:48 +01:00
|
|
|
if_chain! {
|
2021-11-10 15:59:49 -06:00
|
|
|
if let StmtKind::Local(local) = stmt.kind;
|
|
|
|
if let Some(init) = local.init;
|
|
|
|
if let ExprKind::Cast(expr, cast_ty) = init.kind;
|
2021-11-08 17:05:37 -06:00
|
|
|
if let TyKind::Path(ref qpath) = cast_ty.kind;
|
|
|
|
if match_qpath(qpath, &["char"]);
|
2019-09-27 17:16:06 +02:00
|
|
|
if let ExprKind::Lit(ref lit) = expr.kind;
|
2021-10-28 21:39:41 -04:00
|
|
|
if let LitKind::Int(69, LitIntType::Unsuffixed) = lit.node;
|
2019-09-27 17:16:06 +02:00
|
|
|
if let PatKind::Binding(BindingAnnotation::Unannotated, _, name, None) = local.pat.kind;
|
2019-09-27 18:01:04 +02:00
|
|
|
if name.as_str() == "x";
|
2018-02-24 02:02:48 +01:00
|
|
|
then {
|
|
|
|
// report your lint here
|
|
|
|
}
|
|
|
|
}
|