aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Notations.v
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/output/Notations.v
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/output/Notations.v')
-rw-r--r--test-suite/output/Notations.v2
1 files changed, 1 insertions, 1 deletions
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,