ref: 496c846ff65f795f72af5a8c8163f2e032bd2859
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)