aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Fixpoint.out8
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/Fixpoint.out8')
-rw-r--r--test-suite/output/Fixpoint.out811
1 files changed, 0 insertions, 11 deletions
diff --git a/test-suite/output/Fixpoint.out8 b/test-suite/output/Fixpoint.out8
deleted file mode 100644
index 5af28a5af..000000000
--- a/test-suite/output/Fixpoint.out8
+++ /dev/null
@@ -1,11 +0,0 @@
-fix F (A B : Set) (f : A -> B) (l : list A) {struct l} :
-list B := match l with
- | nil => nil (A:=B)
- | 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