summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/codeGen/should_run/cgrun046.hs
blob: be414a8a750702f2cc6b3c632da465614a8b00f3 (plain)
1
2
3
4
5
6
7
8
9
10
module Main where

import System.IO

-- !!! CAF space leaks

main = lots_of_xs 10000

lots_of_xs 0 = return ()
lots_of_xs n = putChar 'x' >> lots_of_xs (n-1)