ref: 1e2d0c28f0d071c623c6d1e7436f506c4459a24f dir: /tests/Misc.hs/
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)