ref: ac0c51a3279123d2a911e918cb87e8151a529c1a
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)