fay-0.19: tests/RecCon.hs
module RecCon where data Bool = True | False main :: Fay () main = print (head (fix (\xs -> 123 : xs))) fix f = let x = f x in x
module RecCon where data Bool = True | False main :: Fay () main = print (head (fix (\xs -> 123 : xs))) fix f = let x = f x in x