summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-list/list02.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-02 16:40:07 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-02 16:45:18 +0200
commit2fe36db8e0c4197fb4dd55c4de3fc15e038744a2 (patch)
tree62f0636f0fb3da4b0890343ab818e91c2abfc214 /testdata/language-features/basic-list/list02.out
parent35d5c201f7540d857956fd9459ef73706304a641 (diff)
use (:) instead of Cons everywhere
Diffstat (limited to 'testdata/language-features/basic-list/list02.out')
-rw-r--r--testdata/language-features/basic-list/list02.out6
1 files changed, 2 insertions, 4 deletions
diff --git a/testdata/language-features/basic-list/list02.out b/testdata/language-features/basic-list/list02.out
index 665e8b7d..74e7428a 100644
--- a/testdata/language-features/basic-list/list02.out
+++ b/testdata/language-features/basic-list/list02.out
@@ -1,9 +1,7 @@
1------------ desugared source code 1------------ desugared source code
2value1 = _rhs Nil 2value1 = _rhs Nil
3value2 3value2 = _rhs (fromInt 1 : fromInt 2 : fromInt 3 : fromInt 4 : Nil)
4 = _rhs 4value3 = _rhs ('h' : 'e' : 'l' : 'l' : 'o' : Nil)
5 (Cons (fromInt 1) (Cons (fromInt 2) (Cons (fromInt 3) (Cons (fromInt 4) Nil))))
6value3 = _rhs (Cons 'h' (Cons 'e' (Cons 'l' (Cons 'l' (Cons 'o' Nil)))))
7main is not found 5main is not found
8------------ trace 6------------ trace
9value1 :: forall a . List a 7value1 :: forall a . List a