aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
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 7a6c189c4e..37ce90af04 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 bfd5482ab2..bbd35b83b0 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 c4592369f7..ab6262823c 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 :=