summaryrefslogtreecommitdiff
path: root/testsuite/tests/codeGen/should_run/cgrun006.hs
blob: bd7ad42c5f3bf218036f6c77aac57fb6d7dd9844 (plain)
1
2
3
4
5
6
main = print (length thirteen_ones)
     where
        thirteen_ones   = take (13::Int) ones

        ones :: [Int]
        ones            = 1 : ones