summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/literal01.out
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/language-features/basic-values/literal01.out')
-rw-r--r--testdata/language-features/basic-values/literal01.out9
1 files changed, 8 insertions, 1 deletions
diff --git a/testdata/language-features/basic-values/literal01.out b/testdata/language-features/basic-values/literal01.out
index b45e2a20..ec3b6908 100644
--- a/testdata/language-features/basic-values/literal01.out
+++ b/testdata/language-features/basic-values/literal01.out
@@ -1,13 +1,20 @@
1main is not found
1------------ desugared source code 2------------ desugared source code
2intValue1 = _rhs (fromInt 0) 3intValue1 = _rhs (fromInt 0)
4
3intValue2 = _rhs (fromInt 1) 5intValue2 = _rhs (fromInt 1)
6
4intValue3 = _rhs (fromInt 12345) 7intValue3 = _rhs (fromInt 12345)
8
5floatValue1 = _rhs 2.0 9floatValue1 = _rhs 2.0
10
6floatValue2 = _rhs 123400.0 11floatValue2 = _rhs 123400.0
12
7charValue = _rhs 'A' 13charValue = _rhs 'A'
14
8stringValue1 = _rhs "Hello World" 15stringValue1 = _rhs "Hello World"
16
9stringValue2 = _rhs "\nHello World\tagain!\r\n" 17stringValue2 = _rhs "\nHello World\tagain!\r\n"
10main is not found
11------------ trace 18------------ trace
12intValue1 :: forall a . Num a => a 19intValue1 :: forall a . Num a => a
13intValue2 :: forall a . Num a => a 20intValue2 :: forall a . Num a => a