summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-list/listcomp07.out
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/language-features/basic-list/listcomp07.out')
-rw-r--r--testdata/language-features/basic-list/listcomp07.out18
1 files changed, 9 insertions, 9 deletions
diff --git a/testdata/language-features/basic-list/listcomp07.out b/testdata/language-features/basic-list/listcomp07.out
index 8cd1a663..9d3651c2 100644
--- a/testdata/language-features/basic-list/listcomp07.out
+++ b/testdata/language-features/basic-list/listcomp07.out
@@ -4,25 +4,25 @@ value1
4 (concatMap 4 (concatMap
5 \_ (a := _rhs HNil) (b := _rhs ((\(c :: _) -> c) a)) -> primIfThenElse 5 \_ (a := _rhs HNil) (b := _rhs ((\(c :: _) -> c) a)) -> primIfThenElse
6 True 6 True
7 \(d := _rhs b) (e := _rhs ((\(f :: _) -> f) d)) -> b : Nil 7 \(d := _rhs b) (e := _rhs ((\(f :: _) -> f) d)) -> b : []
8 Nil 8 []
9 (HNil : HNil : Nil)) 9 (HNil : HNil : []))
10value2 10value2
11 = _rhs 11 = _rhs
12 (concatMap 12 (concatMap
13 \_ (a := _rhs HNil) (b := _rhs ((\(c :: _) -> c) a)) -> primIfThenElse 13 \_ (a := _rhs HNil) (b := _rhs ((\(c :: _) -> c) a)) -> primIfThenElse
14 True 14 True
15 \(d := _rhs b) (e := _rhs ((\(f :: _) -> f) d)) -> b : Nil 15 \(d := _rhs b) (e := _rhs ((\(f :: _) -> f) d)) -> b : []
16 Nil 16 []
17 (HNil : HNil : Nil)) 17 (HNil : HNil : []))
18value3 18value3
19 = _rhs 19 = _rhs
20 (concatMap 20 (concatMap
21 \_ (a := _rhs HNil) (b := _rhs ((\(c :: _) -> c) a)) -> primIfThenElse 21 \_ (a := _rhs HNil) (b := _rhs ((\(c :: _) -> c) a)) -> primIfThenElse
22 True 22 True
23 \(d := _rhs b) (e := _rhs ((\(f :: _) -> f) d)) -> b : Nil 23 \(d := _rhs b) (e := _rhs ((\(f :: _) -> f) d)) -> b : []
24 Nil 24 []
25 (HNil : HNil : Nil)) 25 (HNil : HNil : []))
26main is not found 26main is not found
27------------ trace 27------------ trace
28value1 :: List () 28value1 :: List ()