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