]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/graphviz-flowgraph/f07.dot-expected.dot
251e2b39f14c8fa6be9f4d142417493c62440caa
[rust.git] / src / test / run-make / graphviz-flowgraph / f07.dot-expected.dot
1 digraph block {
2     N0[label="entry"];
3     N1[label="exit"];
4     N2[label="expr 7"];
5     N3[label="expr 77"];
6     N4[label="expr 777"];
7     N5[label="expr 7777"];
8     N6[label="expr [7, 77, 777, 7777]"];
9     N7[label="expr match [7, 77, 777, 7777] { [x, y, ..] => x + y, }"];
10     N8[label="(dummy_node)"];
11     N9[label="local x"];
12     N10[label="local y"];
13     N11[label="pat _"];
14     N12[label="pat [x, y, ..]"];
15     N13[label="expr x"];
16     N14[label="expr y"];
17     N15[label="expr x + y"];
18     N16[label="stmt match [7, 77, 777, 7777] { [x, y, ..] => x + y, };"];
19     N17[label="block { match [7, 77, 777, 7777] { [x, y, ..] => x + y, }; }"];
20     N18[label="expr { match [7, 77, 777, 7777] { [x, y, ..] => x + y, }; }"];
21     N0 -> N2;
22     N2 -> N3;
23     N3 -> N4;
24     N4 -> N5;
25     N5 -> N6;
26     N6 -> N9;
27     N9 -> N10;
28     N10 -> N11;
29     N11 -> N12;
30     N12 -> N8;
31     N8 -> N13;
32     N13 -> N14;
33     N14 -> N15;
34     N15 -> N7;
35     N7 -> N16;
36     N16 -> N17;
37     N17 -> N18;
38     N18 -> N1;
39 }