shithub: MicroHs

ref: f7223e89e63a69b557ab4287128d1ec6ef5190c9
dir: /tests/LocalPoly.hs/

View raw version
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)