aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-12-27 12:10:32 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-12-27 12:10:32 +0000
commit7e266b7cec70ab175d082d6a3398f20554ec8e5e (patch)
tree45fef2bcf7d70facb772a4fa23d5379b4e1b050e
parent163016f59619fd2c500aa5a5117dfa49951d4f0a (diff)
Ajout test bug 860
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6513 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--test-suite/output/Fixpoint.out85
-rw-r--r--test-suite/output/Fixpoint.v811
2 files changed, 15 insertions, 1 deletions
diff --git a/test-suite/output/Fixpoint.out8 b/test-suite/output/Fixpoint.out8
index 4dca551a0..5af28a5af 100644
--- a/test-suite/output/Fixpoint.out8
+++ b/test-suite/output/Fixpoint.out8
@@ -4,3 +4,8 @@ list B := match l with
| a :: l0 => f a :: F A B f l0
end
: forall A B : Set, (A -> B) -> list A -> list B
+let fix f (m : nat) : nat := match m with
+ | O => 0
+ | S m' => f m'
+ end in f 0
+ : nat
diff --git a/test-suite/output/Fixpoint.v8 b/test-suite/output/Fixpoint.v8
index 09d5405fc..ab1467a56 100644
--- a/test-suite/output/Fixpoint.v8
+++ b/test-suite/output/Fixpoint.v8
@@ -5,4 +5,13 @@ Check
list B := match l with
| nil => nil
| a :: l => f a :: F _ _ f l
- end). \ No newline at end of file
+ end).
+
+(* V8 printing of this term used to failed in V8.0 and V8.0pl1 (cf bug #860) *)
+Check
+ let fix f (m : nat) : nat :=
+ match m with
+ | O => 0
+ | S m' => f m'
+ end
+ in f 0.