shithub: MicroHs

ref: 1992c9c6d3b16b6abc4d8a2ec2f32dade98b8c70
dir: /tests/Misc.hs/

View raw version
module Misc(module Misc) where
import Prelude

first :: forall a b . (a, b) -> a
first ab =
  let { (a, b) = ab }
  in  a

main :: IO ()
main = do
  print $ first (10::Int,20::Int)