ref: e0bff6c183d9ed36fc8e16e498538265f7f263fd
dir: /tests/NoForall.hs/
module NoForall where -- Without an explicit forall the 'a' is not bound in the body. f :: a -> ((a,a),(a,a)) f x = let g :: a -> (a,a) g a = (a,a) in g (x,x) main :: IO () main = print (f True)