aboutsummaryrefslogtreecommitdiff
path: root/test-suite/output/TranspModtype.v8
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/TranspModtype.v8')
-rw-r--r--test-suite/output/TranspModtype.v822
1 files changed, 0 insertions, 22 deletions
diff --git a/test-suite/output/TranspModtype.v8 b/test-suite/output/TranspModtype.v8
deleted file mode 100644
index 27a1dff067..0000000000
--- a/test-suite/output/TranspModtype.v8
+++ /dev/null
@@ -1,22 +0,0 @@
-Module Type SIG.
- Axiom A : Set.
- Axiom B : Set.
-End SIG.
-
-Module M : SIG.
- Definition A := nat.
- Definition B := nat.
-End M.
-
-Module N <: SIG := M.
-
-Module TranspId (X: SIG) <: SIG with Definition A := X.A := X.
-Module OpaqueId (X: SIG) : SIG with Definition A := X.A := X.
-
-Module TrM := TranspId M.
-Module OpM := OpaqueId M.
-
-Print TrM.A.
-Print OpM.A.
-Print TrM.B.
-Print OpM.B. \ No newline at end of file