aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/PatternsInBinders.out
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-07-18 23:40:43 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-07-19 11:45:35 +0200
commitb3e7ef09210267e6d34bc1ac377e66c7fec7e739 (patch)
treee97d704efb1246bbf076a7b5678457f4ec4e0895 /test-suite/output/PatternsInBinders.out
parent692e33acd9a44d5c00fe515bd9b87728d2c872a7 (diff)
Fixing missing parentheses in printing of patterns in binders.
(In agreement with Daniel.)
Diffstat (limited to 'test-suite/output/PatternsInBinders.out')
-rw-r--r--test-suite/output/PatternsInBinders.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/test-suite/output/PatternsInBinders.out b/test-suite/output/PatternsInBinders.out
index 6a28475d7..5f9ea9e3d 100644
--- a/test-suite/output/PatternsInBinders.out
+++ b/test-suite/output/PatternsInBinders.out
@@ -4,12 +4,12 @@ fun '(x, y) => (y, x)
: A * B -> B * A
forall '(x, y), swap (x, y) = (y, x)
: Prop
-proj_informative = fun 'exist _ x _ => x : A
+proj_informative = fun '(exist _ x _) => x : A
: {x : A | P x} -> A
-foo = fun 'Bar n b tt p => if b then n + p else n - p
+foo = fun '(Bar n b tt p) => if b then n + p else n - p
: Foo -> nat
baz =
-fun 'Bar n1 _ tt p1 => fun 'Bar _ _ tt _ => n1 + p1
+fun '(Bar n1 _ tt p1) => fun '(Bar _ _ tt _) => n1 + p1
: Foo -> Foo -> nat
λ '(x, y), (y, x)
: A * B → B * A