aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-17 15:00:29 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-17 15:00:29 +0000
commit60ac9070895841ce1fa5ca3d206c7595a4adc5a3 (patch)
treeb3232806ebb5a40c62f33d1a3110eb6075874571 /test-suite
parentb40a928259fba6c22eb70909ab5e86681ad2ec61 (diff)
Using Parameter instead of Variable in test-suite/output
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16417 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/Notations.out4
-rw-r--r--test-suite/output/Notations.v2
-rw-r--r--test-suite/output/reduction.v2
3 files changed, 4 insertions, 4 deletions
diff --git a/test-suite/output/Notations.out b/test-suite/output/Notations.out
index 7a6c189c4..37ce90af0 100644
--- a/test-suite/output/Notations.out
+++ b/test-suite/output/Notations.out
@@ -120,11 +120,11 @@ fun x : option Z => match x with
| NONE2 => 0
end
: option Z -> Z
-fun x : list ?99 => match x with
+fun x : list ?103 => match x with
| NIL => NONE2
| (_ :') t => SOME2 t
end
- : list ?99 -> option (list ?99)
+ : list ?103 -> option (list ?103)
s
: s
Identifier 'foo' now a keyword
diff --git a/test-suite/output/Notations.v b/test-suite/output/Notations.v
index bfd5482ab..bbd35b83b 100644
--- a/test-suite/output/Notations.v
+++ b/test-suite/output/Notations.v
@@ -68,7 +68,7 @@ Coercion Zpos: nat >-> znat.
Delimit Scope znat_scope with znat.
Open Scope znat_scope.
-Variable addz : znat -> znat -> znat.
+Parameter addz : znat -> znat -> znat.
Notation "z1 + z2" := (addz z1 z2) : znat_scope.
(* Check that "3+3", where 3 is in nat and the coercion to znat is implicit,
diff --git a/test-suite/output/reduction.v b/test-suite/output/reduction.v
index c4592369f..ab6262823 100644
--- a/test-suite/output/reduction.v
+++ b/test-suite/output/reduction.v
@@ -1,6 +1,6 @@
(* Test the behaviour of hnf and simpl introduced in revision *)
-Variable n:nat.
+Parameter n:nat.
Definition a:=0.
Eval simpl in (fix plus (n m : nat) {struct n} : nat :=