rust/tests/ui/author.stdout

15 lines
516 B
Plaintext
Raw Normal View History

if_chain! {
if let StmtKind::Local(local) = stmt.kind;
if let Some(init) = local.init;
if let ExprKind::Cast(expr, cast_ty) = init.kind;
if let TyKind::Path(ref qpath) = cast_ty.kind;
if match_qpath(qpath, &["char"]);
2019-09-27 10:16:06 -05:00
if let ExprKind::Lit(ref lit) = expr.kind;
if let LitKind::Int(69, LitIntType::Unsuffixed) = lit.node;
2022-08-30 17:36:53 -05:00
if let PatKind::Binding(BindingAnnotation::NONE, _, name, None) = local.pat.kind;
2019-09-27 11:01:04 -05:00
if name.as_str() == "x";
then {
// report your lint here
}
}