]> git.proxmox.com Git - rustc.git/blob - src/test/run-make/graphviz-flowgraph/f07.dot-expected.dot
Imported Upstream version 1.6.0+dfsg1
[rustc.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 N0 -> N2;
21 N2 -> N3;
22 N3 -> N4;
23 N4 -> N5;
24 N5 -> N6;
25 N6 -> N9;
26 N9 -> N10;
27 N10 -> N11;
28 N11 -> N12;
29 N12 -> N8;
30 N8 -> N13;
31 N13 -> N14;
32 N14 -> N15;
33 N15 -> N7;
34 N7 -> N16;
35 N16 -> N17;
36 N17 -> N1;
37 }