aboutsummaryrefslogtreecommitdiff
path: root/test-suite/output/PrintModule.v
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2015-07-27 14:28:15 +0200
committerPierre-Marie Pédrot2015-07-27 14:28:15 +0200
commitaff5a1aaeb9b50c60ff32b7d5336a44fd18428ee (patch)
tree39d21c9798b9ce7fb59892414f71fb60be61bcde /test-suite/output/PrintModule.v
parent05f22a5d6d5b8e3e80f1a37321708ce401834430 (diff)
parentcb145fa37d463210832c437f013231c9f028e1aa (diff)
Merge branch 'v8.5'
Diffstat (limited to 'test-suite/output/PrintModule.v')
-rw-r--r--test-suite/output/PrintModule.v34
1 files changed, 34 insertions, 0 deletions
diff --git a/test-suite/output/PrintModule.v b/test-suite/output/PrintModule.v
new file mode 100644
index 0000000000..999d9a9862
--- /dev/null
+++ b/test-suite/output/PrintModule.v
@@ -0,0 +1,34 @@
+Module FOO.
+
+Module M.
+ Definition T := nat.
+End M.
+
+Module Type S.
+ Parameter T : Set.
+End S.
+
+Module N : S with Definition T := nat := M.
+
+Print Module N.
+
+End FOO.
+
+Module BAR.
+
+Module K. End K.
+Module Type KS. End KS.
+
+Module M.
+ Module T := K.
+End M.
+
+Module Type S.
+ Declare Module T : KS.
+End S.
+
+Module N : S with Module T := K := M.
+
+Print Module N.
+
+End BAR.