summaryrefslogtreecommitdiff
path: root/testdata/Internals.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-03 16:19:37 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-03 16:19:37 +0200
commit28279936966115e65bfc02bd1cab564af947cf63 (patch)
tree93bed62633c427a2df440c6e0ad40350c9aaa8c5 /testdata/Internals.out
parent4742062dea52956de1490ae2e46b25b458ba94a5 (diff)
fix: parens around operators
Diffstat (limited to 'testdata/Internals.out')
-rw-r--r--testdata/Internals.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/testdata/Internals.out b/testdata/Internals.out
index c76420ae..78586125 100644
--- a/testdata/Internals.out
+++ b/testdata/Internals.out
@@ -155,7 +155,7 @@ negate
155 a 155 a
156 (_rhs ('Empty "no instance of 'Eq on ???")))))))) 156 (_rhs ('Empty "no instance of 'Eq on ???"))))))))
157 :: Type -> Type 157 :: Type -> Type
158== 158(==)
159 = (\ @a @_ -> match'String 159 = (\ @a @_ -> match'String
160 (\_ -> _) 160 (\_ -> _)
161 (_rhs \(b := \(c :: _) (d :: _) -> _rhs (isEQ (primCompareString c d))) -> b) 161 (_rhs \(b := \(c :: _) (d :: _) -> _rhs (isEQ (primCompareString c d))) -> b)
@@ -294,7 +294,7 @@ fromInt :: forall a . Num a => Int -> a
294compare :: forall a . Num a => a -> a -> Ordering 294compare :: forall a . Num a => a -> a -> Ordering
295negate :: forall a . Num a => a -> a 295negate :: forall a . Num a => a -> a
296'Eq :: Type -> Type 296'Eq :: Type -> Type
297== :: forall a . Eq a => a -> a -> Bool 297(==) :: forall a . Eq a => a -> a -> Bool
298'List :: Type -> Type 298'List :: Type -> Type
299[] :: forall a . [a] 299[] :: forall a . [a]
300(:) :: forall a . a -> [a] -> [a] 300(:) :: forall a . a -> [a] -> [a]