aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Fixpoint.out
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/Fixpoint.out')
-rw-r--r--test-suite/output/Fixpoint.out12
1 files changed, 5 insertions, 7 deletions
diff --git a/test-suite/output/Fixpoint.out b/test-suite/output/Fixpoint.out
index f4270d3de..8bc855216 100644
--- a/test-suite/output/Fixpoint.out
+++ b/test-suite/output/Fixpoint.out
@@ -1,6 +1,6 @@
fix F (A B : Set) (f : A -> B) (l : list A) {struct l} :
list B := match l with
- | nil => nil (A:=B)
+ | nil => nil
| a :: l0 => f a :: F A B f l0
end
: forall A B : Set, (A -> B) -> list A -> list B
@@ -14,12 +14,10 @@ fix even_pos_odd_pos 2
intros.
destruct H.
omega.
-
apply odd_pos_even_pos in H.
omega.
+ intros.
+ destruct H.
+ apply even_pos_odd_pos in H.
+ omega.
- intros.
- destruct H.
- apply even_pos_odd_pos in H.
- omega.
-