summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/where01.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/where01.out
parentf24ab8bd8d5cb60a7a75e52655b567f916f73a53 (diff)
improve pretty printing & try to fix local function handling
Diffstat (limited to 'testdata/language-features/basic-values/where01.out')
-rw-r--r--testdata/language-features/basic-values/where01.out22
1 files changed, 11 insertions, 11 deletions
diff --git a/testdata/language-features/basic-values/where01.out b/testdata/language-features/basic-values/where01.out
index 55f17784..82492897 100644
--- a/testdata/language-features/basic-values/where01.out
+++ b/testdata/language-features/basic-values/where01.out
@@ -1,26 +1,26 @@
1main is not found 1main is not found
2------------ desugared source code 2------------ desugared source code
3value1 = _rhs let a = _rhs HNil in HNil 3value1 = _rhs let a = _rhs () in ()
4 4
5value2 = _rhs let a = _rhs HNil in a 5value2 = _rhs let a = _rhs () in a
6 6
7value3 = _rhs let a = _rhs HNil in let b = _rhs HNil in a 7value3 = _rhs let a = _rhs (); b = _rhs () in a
8 8
9value4 = _rhs let a = _rhs HNil in let b = _rhs HNil in b 9value4 = _rhs let a = _rhs (); b = _rhs () in b
10 10
11value5 = _rhs let a = _rhs HNil in let b = _rhs HNil in a 11value5 = _rhs let a = _rhs (); b = _rhs () in a
12 12
13value6 = _rhs HNil 13value6 = _rhs ()
14 14
15value7 = _rhs HNil 15value7 = _rhs ()
16 16
17value8 = _rhs HNil 17value8 = _rhs ()
18 18
19value9 = _rhs let a = _rhs HNil in let b = _rhs HNil in a 19value9 = _rhs let a = _rhs (); b = _rhs () in a
20 20
21value10 = _rhs let a = _rhs HNil in let b = _rhs HNil in a 21value10 = _rhs let a = _rhs (); b = _rhs () in a
22 22
23value11 = _rhs let a = _rhs HNil in let b = _rhs HNil in a 23value11 = _rhs let a = _rhs (); b = _rhs () in a
24------------ trace 24------------ trace
25value1 :: () 25value1 :: ()
26value2 :: () 26value2 :: ()