ref: f529ba311b62096849a41cbed34df3ad4f84c622
dir: /tests/LocalPoly.hs/
module LocalPoly(main) where
import Prelude
main :: IO ()
main = do
  putStrLn $ show $ f 1 "a"
f :: forall b . Int -> b -> ((Int, b), (b, b))
f x b = (i x, i b)
  where
    i :: forall a . a -> (a, b)
    i a = (a, b)