rust/tests/ui/author.stdout

15 lines
517 B
Text
Raw Normal View History

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