summaryrefslogtreecommitdiff
path: root/test-suite/modules/pseudo_circular_with.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/modules/pseudo_circular_with.v')
-rw-r--r--test-suite/modules/pseudo_circular_with.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/modules/pseudo_circular_with.v b/test-suite/modules/pseudo_circular_with.v
new file mode 100644
index 00000000..9e46d17e
--- /dev/null
+++ b/test-suite/modules/pseudo_circular_with.v
@@ -0,0 +1,6 @@
+Module Type S. End S.
+Module Type T. Declare Module M:S. End T.
+Module N:S. End N.
+
+Module NN:T. Module M:=N. End NN.
+Module Type U := T with Module M:=NN. \ No newline at end of file