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.out86
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/output/Fixpoint.out8 b/test-suite/output/Fixpoint.out8
new file mode 100644
index 000000000..4dca551a0
--- /dev/null
+++ b/test-suite/output/Fixpoint.out8
@@ -0,0 +1,6 @@
+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