From 79374b5bf9474fb7fc9db7fee3fccf719ca59391 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 8 Aug 2001 14:21:07 +0000 Subject: [PATCH] [project @ 2001-08-08 14:21:07 by simonmar] semantics of take, drop and splitAt have changed --- ghc/tests/lib/should_run/list001.stdout | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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],[]] -- 1.7.10.4