]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/graphviz-flowgraph/f03.dot-expected.dot
b0ae00d81675a6ee3ccc4a5f4dec9db63cdad371
[rust.git] / src / test / run-make / graphviz-flowgraph / f03.dot-expected.dot
1 digraph block {
2     N0[label="entry"];
3     N1[label="exit"];
4     N2[label="expr 3"];
5     N3[label="expr 4"];
6     N4[label="expr 3 + 4"];
7     N5[label="stmt 3 + 4;"];
8     N6[label="block { 3 + 4; }"];
9     N7[label="expr { 3 + 4; }"];
10     N0 -> N2;
11     N2 -> N3;
12     N3 -> N4;
13     N4 -> N5;
14     N5 -> N6;
15     N6 -> N7;
16     N7 -> N1;
17 }