From 1caa545d5df15a0b7fc2d63d9660318fa7872032 Mon Sep 17 00:00:00 2001 From: herbelin Date: Wed, 16 Mar 2005 11:57:27 +0000 Subject: Nouvelle syntaxe 'with' des modules non gérée en v7 git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6843 85f007b7-540e-0410-9357-904b9bb8a0f7 --- test-suite/output/TranspModtype.out | 10 ---------- test-suite/output/TranspModtype.v | 22 ---------------------- 2 files changed, 32 deletions(-) delete mode 100644 test-suite/output/TranspModtype.out delete mode 100644 test-suite/output/TranspModtype.v (limited to 'test-suite/output') diff --git a/test-suite/output/TranspModtype.out b/test-suite/output/TranspModtype.out deleted file mode 100644 index 41e8648bc0..0000000000 --- a/test-suite/output/TranspModtype.out +++ /dev/null @@ -1,10 +0,0 @@ -TrM.A = M.A - : Set - -OpM.A = M.A - : Set - -TrM.B = M.B - : Set - -*** [ OpM.B : Set ] diff --git a/test-suite/output/TranspModtype.v b/test-suite/output/TranspModtype.v deleted file mode 100644 index 27b1fb9f92..0000000000 --- a/test-suite/output/TranspModtype.v +++ /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. -- cgit v1.2.3