aboutsummaryrefslogtreecommitdiff
path: root/doc/g3.gv
diff options
context:
space:
mode:
Diffstat (limited to 'doc/g3.gv')
-rw-r--r--doc/g3.gv16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/g3.gv b/doc/g3.gv
new file mode 100644
index 0000000..7dcf088
--- /dev/null
+++ b/doc/g3.gv
@@ -0,0 +1,16 @@
+digraph G {
+ a [shape = box, fontname = "monospace", label = "struct A"];
+ b [shape = box, fontname = "monospace", label = "b :: struct B"];
+ c [shape = box, fontname = "monospace", label = "i :: int"];
+ d [shape = box, fontname = "monospace", label = "j :: int"];
+ e [shape = box, fontname = "monospace", label = "x :: int"];
+ f [shape = box, fontname = "monospace", label = "y :: int"];
+ g [shape = box, fontname = "monospace", label = "next :: ptr"];
+ a -> b;
+ b -> c;
+ b -> d;
+ a -> e;
+ a -> f;
+ a -> g;
+ g -> a;
+}