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

	ones :: [Int]
	ones		= 1 : ones