aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-02-12 13:20:27 +0100
committerGaëtan Gilbert2020-02-12 13:20:27 +0100
commit9700c44dca70f5550a6713e4ccbb3693e058a9a7 (patch)
tree795c0757adfac4b32b08ef6e83d9cb8fd63c5a48 /test-suite
parent6c1de3455d5cd79958a8e26ac728f7d5d1b8d025 (diff)
parent8b1bd5bb6bb66a578969e0a4f8c535a3718bba8c (diff)
Merge PR #11563: Mini improvement of the formatting rule for printing fix and cofix
Reviewed-by: SkySkimmer
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/Fixpoint.out10
1 files changed, 5 insertions, 5 deletions
diff --git a/test-suite/output/Fixpoint.out b/test-suite/output/Fixpoint.out
index 6879cbc3c2..60bc9cbf55 100644
--- a/test-suite/output/Fixpoint.out
+++ b/test-suite/output/Fixpoint.out
@@ -1,8 +1,8 @@
-fix F (A B : Set) (f : A -> B) (l : list A) {struct l} :
-list B := match l with
- | nil => nil
- | a :: l0 => f a :: F A B f l0
- end
+fix F (A B : Set) (f : A -> B) (l : list A) {struct l} : list B :=
+ match l with
+ | nil => nil
+ | 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
| 0 => 0