From: simonmar Date: Wed, 8 Aug 2001 14:21:07 +0000 (+0000) Subject: [project @ 2001-08-08 14:21:07 by simonmar] X-Git-Tag: Approximately_9120_patches~1309 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=79374b5bf9474fb7fc9db7fee3fccf719ca59391;p=ghc-hetmet.git [project @ 2001-08-08 14:21:07 by simonmar] semantics of take, drop and splitAt have changed --- diff --git a/ghc/tests/lib/should_run/list001.stdout b/ghc/tests/lib/should_run/list001.stdout index 8dcc8c3..123a591 100644 --- a/ghc/tests/lib/should_run/list001.stdout +++ b/ghc/tests/lib/should_run/list001.stdout @@ -21,12 +21,12 @@ foldr1 [] scanr1 [] [1,2,3,4,1,2,3,4,1,2] (["x","x","x","x"],[],[1,2,3,4]) -take (-1) +[] [["abc","abc"],[],["","",""]] [[6,7,8,9,10],[1,2,3,4,5,6,7,8,9,10],[]] -drop (-1) +[] [([1,2,3,4,5],[6,7,8,9,10]),([1,2,3,4],[])] -splitAt (-1) +([],[1,2,3,4,5,6,7,8,9,10]) ([1,2,3,4],[5,6,7,8,9,10]) ([],[1,2,3,4,5,6,7,8,9,10]) [[10,9,8,7,6,5,4,3,2,1],[]]