summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/T12947.hs
blob: d8a837ce900a6a487a1f020017113863f85c383a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{-# OPTIONS_GHC -dcore-lint -fdefer-typed-holes #-}
module T12947 where

import qualified Control.Monad.Fail as Fail

newtype P m a = P { unP :: (a -> IO (m ())) -> IO (m ()) }

instance Functor (P m) where

instance Applicative (P m) where

instance Monad (P m) where

instance (Fail.MonadFail m) => Fail.MonadFail (P m) where
  fail msg = ContT $ \ _ -> Fail.fail msg