aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/modules/sub_objects.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2005-12-21 23:50:17 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2005-12-21 23:50:17 +0000
commit4d4f08acb5e5f56d38289e5629173bc1b8b5fd57 (patch)
treec160d442d54dbd15cbd0ab3500cdf94d0a6da74e /test-suite/modules/sub_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/sub_objects.v')
-rw-r--r--test-suite/modules/sub_objects.v27
1 files changed, 13 insertions, 14 deletions
diff --git a/test-suite/modules/sub_objects.v b/test-suite/modules/sub_objects.v
index 1bd4faef0..5eec07758 100644
--- a/test-suite/modules/sub_objects.v
+++ b/test-suite/modules/sub_objects.v
@@ -1,33 +1,32 @@
Set Implicit Arguments.
+Unset Strict Implicit.
Module M.
- Definition id:=[A:Set][x:A]x.
+ Definition id (A : Set) (x : A) := x.
Module Type SIG.
- Parameter idid:(A:Set)A->A.
+ Parameter idid : forall A : Set, A -> A.
End SIG.
Module N.
- Definition idid:=[A:Set][x:A](id x).
- Grammar constr constr8 :=
- not_eq [ "#" constr7($b) ] -> [ (idid $b) ].
- Notation inc := (plus (S O)).
+ Definition idid (A : Set) (x : A) := id x.
+ (* <Warning> : Grammar is replaced by Notation *)
+ Notation inc := (plus 1).
End N.
- Definition zero:=(N.idid O).
+ Definition zero := N.idid 0.
End M.
-Definition zero := (M.N.idid O).
-Definition jeden := (M.N.inc O).
+Definition zero := M.N.idid 0.
+Definition jeden := M.N.inc 0.
-Module Goly:=M.N.
+Module Goly := M.N.
-Definition Gole_zero := (Goly.idid O).
-Definition Goly_jeden := (Goly.inc O).
+Definition Gole_zero := Goly.idid 0.
+Definition Goly_jeden := Goly.inc 0.
Module Ubrany : M.SIG := M.N.
-Definition Ubrane_zero := (Ubrany.idid O).
-
+Definition Ubrane_zero := Ubrany.idid 0.