aboutsummaryrefslogtreecommitdiff
path: root/test-suite/output/TranspModtype.v8
diff options
context:
space:
mode:
authorherbelin2005-12-21 23:50:17 +0000
committerherbelin2005-12-21 23:50:17 +0000
commit4d4f08acb5e5f56d38289e5629173bc1b8b5fd57 (patch)
treec160d442d54dbd15cbd0ab3500cdf94d0a6da74e /test-suite/output/TranspModtype.v8
parent960859c0c10e029f9768d0d70addeca8f6b6d784 (diff)
Abandon tests syntaxe v7; remplacement des .v par des fichiers en syntaxe v8
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@7693 85f007b7-540e-0410-9357-904b9bb8a0f7
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