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