ghc-exactprint-1.9.0.0: tests/examples/pre-ghc910/TupSection.hs
{-# LANGUAGE LinearTypes #-}
{-# LANGUAGE TupleSections #-}
module TupSection where
{-
inplace/bin/ghc-stage1 -O2 -dcore-lint
-}
myAp :: (a -> b) -> a -> b
myAp f x = f x
foo = myAp (,()) ()
qux = ("go2",) $ ()