ref: e0aea1f7c8371b5a747b2b755dcd0a2af0b8137b 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)