ref: 30ed73a98df14cb18296e7d2178227e6392a8ff7
dir: /tests/LocalPoly.hs/
module LocalPoly(main) where import Prelude main :: IO () main = do putStrLn $ show $ f 1 ("a"::String) 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)