summaryrefslogtreecommitdiff
path: root/testdata/Builtins.out
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/Builtins.out')
-rw-r--r--testdata/Builtins.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/testdata/Builtins.out b/testdata/Builtins.out
index a9ac34e1..85fa9d7f 100644
--- a/testdata/Builtins.out
+++ b/testdata/Builtins.out
@@ -662,11 +662,11 @@ foldr
662 (_rhs b) 662 (_rhs b)
663 \(d :: _) (e :: _) -> _rhs (a d (foldr a b e)) 663 \(d :: _) (e :: _) -> _rhs (a d (foldr a b e))
664 c 664 c
665concat = _rhs (foldr ++ Nil) 665concat = _rhs (foldr ++ [])
666map 666map
667 = \(a :: _) (b :: _) -> 'ListCase 667 = \(a :: _) (b :: _) -> 'ListCase
668 \_ -> _ :: _ 668 \_ -> _ :: _
669 (_rhs Nil) 669 (_rhs [])
670 \(c :: _) (d :: _) -> _rhs (a c : map a d) 670 \(c :: _) (d :: _) -> _rhs (a c : map a d)
671 b 671 b
672concatMap 672concatMap
@@ -7108,7 +7108,7 @@ Uncovered pattern(s) at testdata/Builtins.lc:201:1:
7108head (x: _) = x 7108head (x: _) = x
7109^^^^ 7109^^^^
7110Missing case(s): 7110Missing case(s):
7111 head Nil 7111 head []
7112Uncovered pattern(s) at testdata/Builtins.lc:340:1: 7112Uncovered pattern(s) at testdata/Builtins.lc:340:1:
7113swizzscalar (V2 x y) Sx = x 7113swizzscalar (V2 x y) Sx = x
7114swizzscalar (V2 x y) Sy = y 7114swizzscalar (V2 x y) Sy = y