id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
101,Lazy list still results in stack overflow,erikd@…,,"Simple Sieve of Eratosthenes :

    primes = sieve $ rangeInfIntL 2

    sieve (p : xs) =
        p : sieve [ x | x <- xs, x `mod` p > 0 ]

    main =
        print $ show $ take 30 primes

when run results in:

    *** DDC RTS PANIC! Slot stack overflow.
    Aborted (core dumped)

",defect,closed,normal,,Build System,,invalid,,
