summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/shadowing01.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-11 20:57:07 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-12 00:50:34 +0200
commite4725c07ee3e7e3fc010df418d16f37c39b0af0f (patch)
treecb10e1d1203eed875955097311ccbe0943564226 /testdata/language-features/basic-values/shadowing01.out
parent95e006bf5afa8d3473e3fe4401f4c9316186a428 (diff)
mutual function definitions
Diffstat (limited to 'testdata/language-features/basic-values/shadowing01.out')
-rw-r--r--testdata/language-features/basic-values/shadowing01.out21
1 files changed, 5 insertions, 16 deletions
diff --git a/testdata/language-features/basic-values/shadowing01.out b/testdata/language-features/basic-values/shadowing01.out
index b1288270..502ad96f 100644
--- a/testdata/language-features/basic-values/shadowing01.out
+++ b/testdata/language-features/basic-values/shadowing01.out
@@ -5,23 +5,12 @@ value
5 value 5 value
6 (_rhs 6 (_rhs
7 let 7 let
8 a = _lhs x (_rhs 'A'); 8 a = 'A';
9 b = _lhs y (_rhs "hello"); 9 b = "hello";
10 c 10 c
11 = _lhs 11 = let
12 c 12 d = fromInt 1; e = 2.12; f = let g = (); h = 'C'; i = 3.12 in "world"
13 (_rhs 13 in ()
14 let
15 d = _lhs x (_rhs (fromInt 1));
16 e = _lhs y (_rhs 2.12);
17 f
18 = _lhs
19 c
20 (_rhs
21 let
22 g = _lhs x (_rhs ()); h = _lhs y (_rhs 'C'); i = _lhs c (_rhs 3.12)
23 in "world")
24 in ())
25 in '7') 14 in '7')
26------------ core code 15------------ core code
27value :: Char 16value :: Char