aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap/recursive.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/techmap/recursive.v')
-rw-r--r--tests/techmap/recursive.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/techmap/recursive.v b/tests/techmap/recursive.v
new file mode 100644
index 000000000..d281b21d8
--- /dev/null
+++ b/tests/techmap/recursive.v
@@ -0,0 +1,8 @@
+module top;
+sub s0();
+foo f0();
+endmodule
+
+module foo;
+sub s0();
+endmodule