aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Fixpoint.v8
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-12-09 13:47:03 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-12-09 13:47:03 +0000
commit7d78cf9acda678659064a12af5cdd31430b7fc3c (patch)
treee67788aace7df595af2e602d6b668cf715f5a0a7 /test-suite/output/Fixpoint.v8
parent47ed51985ad5ab4bb77092beebdc5fe30d3d453b (diff)
Ajout d'une version nouvelle syntaxe
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6451 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/output/Fixpoint.v8')
-rw-r--r--test-suite/output/Fixpoint.v88
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/output/Fixpoint.v8 b/test-suite/output/Fixpoint.v8
new file mode 100644
index 000000000..09d5405fc
--- /dev/null
+++ b/test-suite/output/Fixpoint.v8
@@ -0,0 +1,8 @@
+Require Import List.
+
+Check
+ (fix F (A B : Set) (f : A -> B) (l : list A) {struct l} :
+ list B := match l with
+ | nil => nil
+ | a :: l => f a :: F _ _ f l
+ end). \ No newline at end of file