]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/author.stdout
iterate List by value
[rust.git] / tests / ui / author.stdout
index 0efb3e8b27274d6bee5e3d0a00f2836c003130f1..211d11c7c1aa33ba9c8f4342c4ecad5d50fda8f7 100644 (file)
@@ -1,9 +1,13 @@
 if_chain! {
-    if let Expr_::ExprCast(ref expr, ref cast_ty) = stmt.node;
-    if let Ty_::TyPath(ref qp) = cast_ty.node;
+    if let StmtKind::Local(ref local) = stmt.kind;
+    if let Some(ref init) = local.init;
+    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"]);
-    if let Expr_::ExprLit(ref lit) = expr.node;
+    if let ExprKind::Lit(ref lit) = expr.kind;
     if let LitKind::Int(69, _) = lit.node;
+    if let PatKind::Binding(BindingAnnotation::Unannotated, _, name, None) = local.pat.kind;
+    if name.as_str() == "x";
     then {
         // report your lint here
     }