summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/let01.out
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/language-features/basic-values/let01.out')
-rw-r--r--testdata/language-features/basic-values/let01.out6
1 files changed, 5 insertions, 1 deletions
diff --git a/testdata/language-features/basic-values/let01.out b/testdata/language-features/basic-values/let01.out
index 33524e88..dd6cad7e 100644
--- a/testdata/language-features/basic-values/let01.out
+++ b/testdata/language-features/basic-values/let01.out
@@ -1,10 +1,14 @@
1main is not found
1------------ desugared source code 2------------ desugared source code
2value1 = _rhs \(a := _rhs (fromInt 1)) -> fromInt 1 3value1 = _rhs \(a := _rhs (fromInt 1)) -> fromInt 1
4
3value2 = _rhs \(a := _rhs (fromInt 1)) -> fromInt 1 5value2 = _rhs \(a := _rhs (fromInt 1)) -> fromInt 1
6
4value3 = _rhs \(a := _rhs (fromInt 1)) (b := _rhs 'c') -> fromInt 1 7value3 = _rhs \(a := _rhs (fromInt 1)) (b := _rhs 'c') -> fromInt 1
8
5value4 = _rhs \(a := _rhs (fromInt 1)) -> fromInt 1 9value4 = _rhs \(a := _rhs (fromInt 1)) -> fromInt 1
10
6value5 = _rhs \(a := _rhs (fromInt 1)) (b := _rhs (fromInt 2)) -> fromInt 1 11value5 = _rhs \(a := _rhs (fromInt 1)) (b := _rhs (fromInt 2)) -> fromInt 1
7main is not found
8------------ trace 12------------ trace
9value1 :: forall a . Num a => a 13value1 :: forall a . Num a => a
10value2 :: forall a . Num a => a 14value2 :: forall a . Num a => a