summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/fixity02.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/language-features/basic-values/fixity02.out
parent4742062dea52956de1490ae2e46b25b458ba94a5 (diff)
fix: parens around operators
Diffstat (limited to 'testdata/language-features/basic-values/fixity02.out')
-rw-r--r--testdata/language-features/basic-values/fixity02.out8
1 files changed, 4 insertions, 4 deletions
diff --git a/testdata/language-features/basic-values/fixity02.out b/testdata/language-features/basic-values/fixity02.out
index baf54313..acdd5309 100644
--- a/testdata/language-features/basic-values/fixity02.out
+++ b/testdata/language-features/basic-values/fixity02.out
@@ -1,8 +1,8 @@
1------------ desugared source code 1------------ desugared source code
2funL = \(a :: _) _ -> _rhs a 2funL = \(a :: _) _ -> _rhs a
3funR = \_ (a :: _) -> _rhs a 3funR = \_ (a :: _) -> _rhs a
4<@ = \(a :: _) _ -> _rhs a 4(<@) = \(a :: _) _ -> _rhs a
5@> = \_ (a :: _) -> _rhs a 5(@>) = \_ (a :: _) -> _rhs a
6infixr 7 funL 6infixr 7 funL
7infixr 7 <@ 7infixr 7 <@
8infixr 6 @> 8infixr 6 @>
@@ -27,8 +27,8 @@ main is not found
27------------ trace 27------------ trace
28funL :: forall a b . a -> b -> a 28funL :: forall a b . a -> b -> a
29funR :: forall a b . a -> b -> b 29funR :: forall a b . a -> b -> b
30<@ :: forall a b . a -> b -> a 30(<@) :: forall a b . a -> b -> a
31@> :: forall a b . a -> b -> b 31(@>) :: forall a b . a -> b -> b
32value1 :: Float 32value1 :: Float
33value2 :: Float 33value2 :: Float
34value3 :: Float 34value3 :: Float