]> git.lizzy.rs Git - rust.git/blob - tests/ui/author/for_loop.stdout
Auto merge of #3681 - rmcteggart-r7:master, r=matthiaskrgr
[rust.git] / tests / ui / author / for_loop.stdout
1 if_chain! {
2     if let ExprKind::Block(ref block) = expr.node;
3     if let StmtKind::Local(ref local) = block.node;
4     if let Some(ref init) = local.init
5     if let ExprKind::Match(ref expr, ref arms, MatchSource::ForLoopDesugar) = init.node;
6     if let ExprKind::Call(ref func, ref args) = expr.node;
7     if let ExprKind::Path(ref path) = func.node;
8     if match_qpath(path, &["{{root}}", "std", "iter", "IntoIterator", "into_iter"]);
9     if args.len() == 1;
10     if let ExprKind::Struct(ref path1, ref fields, None) = args[0].node;
11     if match_qpath(path1, &["{{root}}", "std", "ops", "Range"]);
12     if fields.len() == 2;
13     // unimplemented: field checks
14     if arms.len() == 1;
15     if let ExprKind::Loop(ref body, ref label, LoopSource::ForLoop) = arms[0].body.node;
16     if let StmtKind::Local(ref local1) = body.node;
17     if let PatKind::Binding(BindingAnnotation::Mutable, _, name, None) = local1.pat.node;
18     if name.node.as_str() == "__next";
19     if let StmtKind::Expr(ref e, _) = local1.pat.node
20     if let ExprKind::Match(ref expr1, ref arms1, MatchSource::ForLoopDesugar) = e.node;
21     if let ExprKind::Call(ref func1, ref args1) = expr1.node;
22     if let ExprKind::Path(ref path2) = func1.node;
23     if match_qpath(path2, &["{{root}}", "std", "iter", "Iterator", "next"]);
24     if args1.len() == 1;
25     if let ExprKind::AddrOf(MutMutable, ref inner) = args1[0].node;
26     if let ExprKind::Path(ref path3) = inner.node;
27     if match_qpath(path3, &["iter"]);
28     if arms1.len() == 2;
29     if let ExprKind::Assign(ref target, ref value) = arms1[0].body.node;
30     if let ExprKind::Path(ref path4) = target.node;
31     if match_qpath(path4, &["__next"]);
32     if let ExprKind::Path(ref path5) = value.node;
33     if match_qpath(path5, &["val"]);
34     if arms1[0].pats.len() == 1;
35     if let PatKind::TupleStruct(ref path6, ref fields1, None) = arms1[0].pats[0].node;
36     if match_qpath(path6, &["{{root}}", "std", "option", "Option", "Some"]);
37     if fields1.len() == 1;
38     // unimplemented: field checks
39     if let ExprKind::Break(ref destination, None) = arms1[1].body.node;
40     if arms1[1].pats.len() == 1;
41     if let PatKind::Path(ref path7) = arms1[1].pats[0].node;
42     if match_qpath(path7, &["{{root}}", "std", "option", "Option", "None"]);
43     if let StmtKind::Local(ref local2) = path7.node;
44     if let Some(ref init1) = local2.init
45     if let ExprKind::Path(ref path8) = init1.node;
46     if match_qpath(path8, &["__next"]);
47     if let PatKind::Binding(BindingAnnotation::Unannotated, _, name1, None) = local2.pat.node;
48     if name1.node.as_str() == "y";
49     if let StmtKind::Expr(ref e1, _) = local2.pat.node
50     if let ExprKind::Block(ref block1) = e1.node;
51     if let StmtKind::Local(ref local3) = block1.node;
52     if let Some(ref init2) = local3.init
53     if let ExprKind::Path(ref path9) = init2.node;
54     if match_qpath(path9, &["y"]);
55     if let PatKind::Binding(BindingAnnotation::Unannotated, _, name2, None) = local3.pat.node;
56     if name2.node.as_str() == "z";
57     if arms[0].pats.len() == 1;
58     if let PatKind::Binding(BindingAnnotation::Mutable, _, name3, None) = arms[0].pats[0].node;
59     if name3.node.as_str() == "iter";
60     if let PatKind::Binding(BindingAnnotation::Unannotated, _, name4, None) = local.pat.node;
61     if name4.node.as_str() == "_result";
62     if let ExprKind::Path(ref path10) = local.pat.node;
63     if match_qpath(path10, &["_result"]);
64     then {
65         // report your lint here
66     }
67 }