ghc-exactprint-0.6.4: tests/examples/ghc90/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",) $ ()