diff options
Diffstat (limited to 'testsuite/tests/codeGen/should_run/cgrun009.hs')
-rw-r--r-- | testsuite/tests/codeGen/should_run/cgrun009.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/codeGen/should_run/cgrun009.hs b/testsuite/tests/codeGen/should_run/cgrun009.hs new file mode 100644 index 0000000000..de03fc42cd --- /dev/null +++ b/testsuite/tests/codeGen/should_run/cgrun009.hs @@ -0,0 +1,7 @@ +main = print (length take_list) + where + take_list :: [Int] + take_list = takeWhile (\ x -> x < 6) given_list + + given_list :: [Int] + given_list = [1,2,3,4,5,6,7,8,9] |