summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/fixity02.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-05 17:55:01 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-05 17:55:01 +0200
commit9e232c77ee6d0948f7dd5727d3ec568bbedf4316 (patch)
treed9f64543cf48a964fd29e95b87b824f9b5c2a877 /testdata/language-features/basic-values/fixity02.out
parentf24ab8bd8d5cb60a7a75e52655b567f916f73a53 (diff)
improve pretty printing & try to fix local function handling
Diffstat (limited to 'testdata/language-features/basic-values/fixity02.out')
-rw-r--r--testdata/language-features/basic-values/fixity02.out32
1 files changed, 16 insertions, 16 deletions
diff --git a/testdata/language-features/basic-values/fixity02.out b/testdata/language-features/basic-values/fixity02.out
index 841eda57..973e69be 100644
--- a/testdata/language-features/basic-values/fixity02.out
+++ b/testdata/language-features/basic-values/fixity02.out
@@ -16,37 +16,37 @@ infixr 6 @>
16 16
17infixr 6 funR 17infixr 6 funR
18 18
19value1 = _rhs (HNil @> 'c' @> "hi" @> 1.2 :: Float) 19value1 = _rhs (() @> 'c' @> "hi" @> 1.2 :: Float)
20 20
21value2 = _rhs (HNil @> 'c' <@ "hi" @> 1.2 :: Float) 21value2 = _rhs (() @> 'c' <@ "hi" @> 1.2 :: Float)
22 22
23value3 = _rhs (HNil <@ 'c' @> "hi" @> 1.2 :: Float) 23value3 = _rhs (() <@ 'c' @> "hi" @> 1.2 :: Float)
24 24
25value4 = _rhs (HNil <@ 'c' <@ "hi" @> 1.2 :: Float) 25value4 = _rhs (() <@ 'c' <@ "hi" @> 1.2 :: Float)
26 26
27value5 = _rhs (HNil @> 'c' @> "hi" <@ 1.2 :: String) 27value5 = _rhs (() @> 'c' @> "hi" <@ 1.2 :: String)
28 28
29value6 = _rhs (HNil @> 'c' <@ "hi" <@ 1.2 :: Char) 29value6 = _rhs (() @> 'c' <@ "hi" <@ 1.2 :: Char)
30 30
31value7 = _rhs (HNil <@ 'c' @> "hi" <@ 1.2 :: String) 31value7 = _rhs (() <@ 'c' @> "hi" <@ 1.2 :: String)
32 32
33value8 = _rhs (HNil <@ 'c' <@ "hi" <@ 1.2 :: HList '[]) 33value8 = _rhs (() <@ 'c' <@ "hi" <@ 1.2 :: ())
34 34
35funValue1 = _rhs (HNil `funR` 'c' `funR` "hi" `funR` 1.2 :: Float) 35funValue1 = _rhs (() `funR` 'c' `funR` "hi" `funR` 1.2 :: Float)
36 36
37funValue2 = _rhs (HNil `funR` 'c' `funL` "hi" `funR` 1.2 :: Float) 37funValue2 = _rhs (() `funR` 'c' `funL` "hi" `funR` 1.2 :: Float)
38 38
39funValue3 = _rhs (HNil `funL` 'c' `funR` "hi" `funR` 1.2 :: Float) 39funValue3 = _rhs (() `funL` 'c' `funR` "hi" `funR` 1.2 :: Float)
40 40
41funValue4 = _rhs (HNil `funL` 'c' `funL` "hi" `funR` 1.2 :: Float) 41funValue4 = _rhs (() `funL` 'c' `funL` "hi" `funR` 1.2 :: Float)
42 42
43funValue5 = _rhs (HNil `funR` 'c' `funR` "hi" `funL` 1.2 :: String) 43funValue5 = _rhs (() `funR` 'c' `funR` "hi" `funL` 1.2 :: String)
44 44
45funValue6 = _rhs (HNil `funR` 'c' `funL` "hi" `funL` 1.2 :: Char) 45funValue6 = _rhs (() `funR` 'c' `funL` "hi" `funL` 1.2 :: Char)
46 46
47funValue7 = _rhs (HNil `funL` 'c' `funR` "hi" `funL` 1.2 :: String) 47funValue7 = _rhs (() `funL` 'c' `funR` "hi" `funL` 1.2 :: String)
48 48
49funValue8 = _rhs (HNil `funL` 'c' `funL` "hi" `funL` 1.2 :: HList '[]) 49funValue8 = _rhs (() `funL` 'c' `funL` "hi" `funL` 1.2 :: ())
50------------ trace 50------------ trace
51funL :: forall a b . a -> b -> a 51funL :: forall a b . a -> b -> a
52funR :: forall a b . a -> b -> b 52funR :: forall a b . a -> b -> b