aboutsummaryrefslogtreecommitdiff
path: root/test-suite/modules/objects.v
diff options
context:
space:
mode:
authorherbelin2005-12-21 23:50:17 +0000
committerherbelin2005-12-21 23:50:17 +0000
commit4d4f08acb5e5f56d38289e5629173bc1b8b5fd57 (patch)
treec160d442d54dbd15cbd0ab3500cdf94d0a6da74e /test-suite/modules/objects.v
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/modules/objects.v')
-rw-r--r--test-suite/modules/objects.v28
1 files changed, 14 insertions, 14 deletions
diff --git a/test-suite/modules/objects.v b/test-suite/modules/objects.v
index 418ece4424..070f859eaa 100644
--- a/test-suite/modules/objects.v
+++ b/test-suite/modules/objects.v
@@ -1,33 +1,33 @@
Module Type SET.
- Axiom T:Set.
- Axiom x:T.
+ Axiom T : Set.
+ Axiom x : T.
End SET.
-Implicit Arguments On.
+Set Implicit Arguments.
+Unset Strict Implicit.
-Module M[X:SET].
+Module M (X: SET).
Definition T := nat.
- Definition x := O.
- Definition f := [A:Set][x:A]X.x.
+ Definition x := 0.
+ Definition f (A : Set) (x : A) := X.x.
End M.
-Module N:=M.
+Module N := M.
Module Nat.
Definition T := nat.
- Definition x := O.
+ Definition x := 0.
End Nat.
-Module Z:=(N Nat).
+Module Z := N Nat.
-Check (Z.f O).
+Check (Z.f 0).
-Module P[Y:SET] := N.
+Module P (Y: SET) := N.
-Module Y:=P Z Nat.
-
-Check (Y.f O).
+Module Y := P Z Nat.
+Check (Y.f 0).