summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T13132.hs
blob: 70706074b3b26fc61108a9069b9f2689cbee76df (plain)
1
2
3
4
5
module Bug where

newtype ContT r m a = ContT { runContT :: (a -> m r) -> m r }

foo bar baz = (`runContT` bar.baz)