summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_compile/T10753.hs
blob: cc96c2ea637ecc948cac8fd54aa934b9168f234c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{-# LANGUAGE TypeFamilies, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances #-}
{-# LANGUAGE KindSignatures #-}
{-# OPTIONS_GHC -fno-warn-redundant-constraints -fno-warn-missing-methods #-}
module T10753 where

import Data.Kind (Type)

class MonadState s m | m -> s where
  get :: m s

newtype StateT s m a = StateT { runStateT :: s -> m (a,s) }
instance (Monad m) => Monad (StateT s m) where
instance (Functor m, Monad m) => Applicative (StateT s m) where
instance (Functor m) => Functor (StateT s m) where

instance (Monad m) => MonadState s (StateT s m) where

class HasConns (m :: Type -> Type) where
    type Conn m

foo :: (Monad m) => StateT (Conn m) m ()
foo =
    do _ <- get
       return ()