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