aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-12-09 13:46:35 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-12-09 13:46:35 +0000
commit380315878ad71c77592d9bbee5efdb365b46bff3 (patch)
treefb06e11aa6f4dc289ca0a1937f50f053f57abdb3 /test-suite
parentfa27bcf98355f464dde0afd40b550a765f056098 (diff)
Test d'affichage d'un Fix donné avec /n
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6449 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/Fixpoint.out7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/output/Fixpoint.out b/test-suite/output/Fixpoint.out
new file mode 100644
index 000000000..9873ad533
--- /dev/null
+++ b/test-suite/output/Fixpoint.out
@@ -0,0 +1,7 @@
+Fix F
+ {F [A,B:Set; f:(A ->B); l:(list A)] : (list B) :=
+ Cases l of
+ nil => (nil B)
+ | (cons a l0) => (cons (f a) (F A B f l0))
+ end}
+ : (A,B:Set)(A ->B) ->(list A) ->(list B)