]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/graphviz-flowgraph/f05.dot-expected.dot
document `diverges` more correctly
[rust.git] / src / test / run-make / graphviz-flowgraph / f05.dot-expected.dot
1 digraph block {
2     N0[label="entry"];
3     N1[label="exit"];
4     N2[label="expr 5"];
5     N3[label="expr 55"];
6     N4[label="expr (5, 55)"];
7     N5[label="local _x"];
8     N6[label="local _y"];
9     N7[label="pat (_x, _y)"];
10     N8[label="stmt let (_x, _y) = (5, 55);"];
11     N9[label="block { let (_x, _y) = (5, 55); }"];
12     N10[label="expr { let (_x, _y) = (5, 55); }"];
13     N0 -> N2;
14     N2 -> N3;
15     N3 -> N4;
16     N4 -> N5;
17     N5 -> N6;
18     N6 -> N7;
19     N7 -> N8;
20     N8 -> N9;
21     N9 -> N10;
22     N10 -> N1;
23 }