ref: 0a6f76bc5c3e2d48b503734bc7ea7ed39292d182
dir: /tests/TypeApp.hs/
module TypeApp where import Data.Typeable foo :: forall a b . (a, b) foo = (undefined, undefined) main :: IO () main = do print $ read @Int "123" let (x, y) = foo @_ @Bool print $ typeOf y