id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
160,Runtime crash with recursive bindings,benl,,"The following Haskell code to solve the 2nd Euler problem causes a runtime crash.

{{{
maxN	= 10000
main ()
 = do	println $ show solution1

even x = x `mod` 2 == 0

solution1 
  = sum [ x 	| x <- takeWhile ((<=) maxN) fibs
              		, even x]
  where	fibs = 1 : 1 : zipWith (+) fibs (tail fibs)
}}}",defect,new,blocker,0.1.3,Runtime System,0.1.2,,,
