summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-list/list02.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-list/list02.out
parentf24ab8bd8d5cb60a7a75e52655b567f916f73a53 (diff)
improve pretty printing & try to fix local function handling
Diffstat (limited to 'testdata/language-features/basic-list/list02.out')
-rw-r--r--testdata/language-features/basic-list/list02.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/testdata/language-features/basic-list/list02.out b/testdata/language-features/basic-list/list02.out
index 6101a1fa..049f23d2 100644
--- a/testdata/language-features/basic-list/list02.out
+++ b/testdata/language-features/basic-list/list02.out
@@ -2,9 +2,9 @@ main is not found
2------------ desugared source code 2------------ desugared source code
3value1 = _rhs [] 3value1 = _rhs []
4 4
5value2 = _rhs (fromInt 1 : fromInt 2 : fromInt 3 : fromInt 4 : []) 5value2 = _rhs [fromInt 1, fromInt 2, fromInt 3, fromInt 4]
6 6
7value3 = _rhs ('h' : 'e' : 'l' : 'l' : 'o' : []) 7value3 = _rhs ['h', 'e', 'l', 'l', 'o']
8------------ trace 8------------ trace
9value1 :: forall a . [a] 9value1 :: forall a . [a]
10value2 :: forall a . Num a => [a] 10value2 :: forall a . Num a => [a]